<?php
// Update the path below to your autoload.php,
// see https://getcomposer.org/doc/01-basic-usage.md
require_once ‘/path/to/vendor/autoload.php’;
use Twilio\Rest\Client;
$sid = "ACb42cdb46b6b6a5096c24bc9e8d00c42c";
$token = "[AuthToken]";
$twilio = new Client($sid, $token);
$message = $twilio->messages
->create("+18777804236", // to
array(
"from" => "+18449804003",
"body" => test me out
)
);
print($message->sid);