2011-06-08 23:45:08 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Laravel - A clean and classy framework for PHP web development.
|
|
|
|
|
*
|
|
|
|
|
* @package Laravel
|
2011-08-03 22:10:07 -05:00
|
|
|
* @version 1.5.0
|
2011-07-16 13:52:13 -05:00
|
|
|
* @author Taylor Otwell
|
2011-07-25 23:32:25 -05:00
|
|
|
* @link http://laravel.com
|
2011-06-08 23:45:08 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2011-07-28 08:46:39 -05:00
|
|
|
// The path to the application directory.
|
2011-06-08 23:45:08 -05:00
|
|
|
// --------------------------------------------------------------
|
2011-08-05 09:06:23 -05:00
|
|
|
$application = '../application';
|
2011-07-28 08:46:39 -05:00
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// The path to the system directory.
|
|
|
|
|
// --------------------------------------------------------------
|
2011-08-05 09:06:23 -05:00
|
|
|
$system = '../system';
|
2011-08-04 17:40:16 -05:00
|
|
|
|
2011-07-29 22:53:43 -05:00
|
|
|
// --------------------------------------------------------------
|
2011-08-03 22:10:07 -05:00
|
|
|
// The path to the packages directory.
|
2011-07-29 22:53:43 -05:00
|
|
|
// --------------------------------------------------------------
|
2011-08-05 09:06:23 -05:00
|
|
|
$packages = '../packages';
|
2011-08-03 22:10:07 -05:00
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// The path to the modules directory.
|
|
|
|
|
// --------------------------------------------------------------
|
2011-08-05 09:06:23 -05:00
|
|
|
$modules = '../modules';
|
2011-08-03 22:10:07 -05:00
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// The path to the storage directory.
|
|
|
|
|
// --------------------------------------------------------------
|
2011-08-05 09:06:23 -05:00
|
|
|
$storage = '../storage';
|
2011-08-03 22:10:07 -05:00
|
|
|
|
2011-06-08 23:45:08 -05:00
|
|
|
// --------------------------------------------------------------
|
2011-08-05 09:06:23 -05:00
|
|
|
// The path to the public directory.
|
2011-06-08 23:45:08 -05:00
|
|
|
// --------------------------------------------------------------
|
2011-08-05 09:06:23 -05:00
|
|
|
$public = __DIR__;
|
2011-06-08 23:45:08 -05:00
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2011-08-04 17:36:23 -05:00
|
|
|
// Launch Laravel.
|
2011-06-08 23:45:08 -05:00
|
|
|
// --------------------------------------------------------------
|
2011-08-05 09:06:23 -05:00
|
|
|
require $system.'/laravel.php';
|