123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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(
- 'application' => 'application',
- );
- // --------------------------------------------------------------
- // The path to the Laravel directory.
- // --------------------------------------------------------------
- $system = '../laravel';
- // --------------------------------------------------------------
- // The path to the configuration directory.
- // --------------------------------------------------------------
- $config = '../config';
- // --------------------------------------------------------------
- // 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';
|