Added a hack to work locally for me. May move to using composer to obtain / install vfsStream just didn't like the "vendor" directory, will look into using a custom directory so it can be hidden git ignored.
21 lines
408 B
PHP
21 lines
408 B
PHP
<?php
|
|
|
|
ob_start();
|
|
|
|
$vfs_file = '/usr/local/Cellar/php55/5.5.7/lib/php/vfsStream/vfsStream.php';
|
|
|
|
if (file_exists($vfs_file))
|
|
{
|
|
require_once $vfs_file;
|
|
}
|
|
|
|
$root = vfsStream::setup('site');
|
|
define('SITE_PATH', vfsStream::url('site/'));
|
|
|
|
require_once 'classes/Object.php';
|
|
require_once 'classes/Config.php';
|
|
require_once 'classes/Display.php';
|
|
require_once 'classes/File.php';
|
|
require_once 'pickles.php';
|
|
|
|
?>
|