Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F978980
Bootstrap.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
653 B
Referenced Files
None
Subscribers
None
Bootstrap.php
View Options
<?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
);
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 11:48 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
225839
Default Alt Text
Bootstrap.php (653 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment