index.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 1.5.8
  7. * @author Taylor Otwell
  8. * @link http://laravel.com
  9. */
  10. // --------------------------------------------------------------
  11. // The path to the application directory.
  12. // --------------------------------------------------------------
  13. $application = '../application';
  14. // --------------------------------------------------------------
  15. // The path to the system directory.
  16. // --------------------------------------------------------------
  17. $system = '../system';
  18. // --------------------------------------------------------------
  19. // The path to the packages directory.
  20. // --------------------------------------------------------------
  21. $packages = '../packages';
  22. // --------------------------------------------------------------
  23. // The path to the modules directory.
  24. // --------------------------------------------------------------
  25. $modules = '../modules';
  26. // --------------------------------------------------------------
  27. // The path to the storage directory.
  28. // --------------------------------------------------------------
  29. $storage = '../storage';
  30. // --------------------------------------------------------------
  31. // The path to the public directory.
  32. // --------------------------------------------------------------
  33. $public = __DIR__;
  34. // --------------------------------------------------------------
  35. // Launch Laravel.
  36. // --------------------------------------------------------------
  37. require $system.'/laravel.php';