More tweaking.

This commit is contained in:
Joshua Sherman 2013-12-28 01:49:52 -05:00
parent 5d14f78d29
commit a1d9f87a4f

View file

@ -4,13 +4,14 @@ ob_start();
$vfs_files = [
'/usr/local/Cellar/php55/5.5.7/lib/php/vfsStream/vfsStream.php',
'./vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStream.php',
'./vendor/autoload.php',
];
foreach ($vfs_files as $vfs_file)
{
if (file_exists($vfs_file))
{
echo $vfs_file;
require_once $vfs_file;
}
}