index.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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
  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. $laravel = '../laravel';
  38. $packages = '../packages';
  39. $modules = '../modules';
  40. $storage = '../storage';
  41. $public = __DIR__;
  42. /*
  43. |--------------------------------------------------------------------------
  44. | 3... 2... 1... Lift-off!
  45. |--------------------------------------------------------------------------
  46. */
  47. require $laravel.'/laravel.php';