1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?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);
|