index.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. // The active modules for this Laravel installation.
  12. // --------------------------------------------------------------
  13. $active = array(
  14. 'application' => 'application',
  15. );
  16. // --------------------------------------------------------------
  17. // The path to the Laravel directory.
  18. // --------------------------------------------------------------
  19. $system = '../laravel';
  20. // --------------------------------------------------------------
  21. // The path to the configuration directory.
  22. // --------------------------------------------------------------
  23. $config = '../config';
  24. // --------------------------------------------------------------
  25. // The path to the packages directory.
  26. // --------------------------------------------------------------
  27. $packages = '../packages';
  28. // --------------------------------------------------------------
  29. // The path to the modules directory.
  30. // --------------------------------------------------------------
  31. $modules = '../modules';
  32. // --------------------------------------------------------------
  33. // The path to the storage directory.
  34. // --------------------------------------------------------------
  35. $storage = '../storage';
  36. // --------------------------------------------------------------
  37. // The path to the public directory.
  38. // --------------------------------------------------------------
  39. $public = __DIR__;
  40. // --------------------------------------------------------------
  41. // Launch Laravel.
  42. // --------------------------------------------------------------
  43. require $system.'/laravel.php';