mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 05:12:41 +01:00
e96c363eef
Summary: Provides a working SMS implementation with support for Twilio. This version doesn't really retry if we get any gruff at all. Future versions should retry. Test Plan: used bin/sms to send messages and look at them. Reviewers: chad, epriestley Reviewed By: epriestley Subscribers: aurelijus, epriestley, Korvin Maniphest Tasks: T920 Differential Revision: https://secure.phabricator.com/D8930
27 lines
653 B
PHP
Executable file
27 lines
653 B
PHP
Executable file
<?php
|
|
|
|
error_reporting(E_ALL | E_STRICT);
|
|
ini_set('display_errors', 1);
|
|
|
|
$root = realpath(dirname(dirname(__FILE__)));
|
|
$library = "$root/Services";
|
|
$tests = "$root/tests";
|
|
|
|
$path = array($library, $tests, get_include_path());
|
|
set_include_path(implode(PATH_SEPARATOR, $path));
|
|
|
|
$vendorFilename = dirname(__FILE__) . '/../vendor/autoload.php';
|
|
if (file_exists($vendorFilename)) {
|
|
/* composer install */
|
|
require $vendorFilename;
|
|
} else {
|
|
/* hope you have it installed somewhere. */
|
|
require_once 'Mockery/Loader.php';
|
|
}
|
|
$loader = new \Mockery\Loader;
|
|
$loader->register();
|
|
|
|
require_once 'Twilio.php';
|
|
|
|
unset($root, $library, $tests, $path);
|
|
|