| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | <?php/** * Laravel - A clean and classy framework for PHP web development. * * @package  Laravel * @version  2.0.0 * @author   Taylor Otwell * @link     http://laravel.com */// --------------------------------------------------------------// The active modules for this Laravel installation.// --------------------------------------------------------------$active   = array();// --------------------------------------------------------------// The path to the Laravel directory.// --------------------------------------------------------------$system   = '../laravel';// --------------------------------------------------------------// The path to the packages directory.// --------------------------------------------------------------$packages = '../packages';// --------------------------------------------------------------// The path to the modules directory.// --------------------------------------------------------------$modules  = '../modules';// --------------------------------------------------------------// The path to the storage directory.// --------------------------------------------------------------$storage  = '../storage';// --------------------------------------------------------------// The path to the public directory.// --------------------------------------------------------------$public   = __DIR__;// --------------------------------------------------------------// Launch Laravel.// --------------------------------------------------------------require $system.'/laravel.php';
 |