index.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 2.0.0
  7. * @author Taylor Otwell <taylorotwell@gmail.com>
  8. * @link http://laravel.com
  9. */
  10. /*
  11. |--------------------------------------------------------------------------
  12. | Active Modules
  13. |--------------------------------------------------------------------------
  14. |
  15. | Modules are a convenient way to organize your application into logical
  16. | components. Each module may have its own libraries, models, routes,
  17. | views, language files, and configuration.
  18. |
  19. | Here you may specify which modules are active for your application.
  20. | This simply gives Laravel an easy way to know which directories to
  21. | check when auto-loading your classes, routes, and views.
  22. |
  23. */
  24. $active = array();
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Installation Paths
  28. |--------------------------------------------------------------------------
  29. |
  30. | Here you may specify the location of the various Laravel framework
  31. | directories for your installation.
  32. |
  33. | Of course, these are already set to the proper default values, so you do
  34. | not need to change them if you have not modified the directory structure.
  35. |
  36. */
  37. $application = '../application';
  38. $laravel = '../laravel';
  39. $packages = '../packages';
  40. $modules = '../modules';
  41. $storage = '../storage';
  42. $public = __DIR__;
  43. /*
  44. |--------------------------------------------------------------------------
  45. | 3... 2... 1... Lift-off!
  46. |--------------------------------------------------------------------------
  47. */
  48. require $laravel.'/laravel.php';