index.php 1.0 KB

12345678910111213141516171819202122232425262728293031
  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. define('LARAVEL_START', microtime(true));
  11. // --------------------------------------------------------------
  12. // The path to the application directory.
  13. // --------------------------------------------------------------
  14. $application = '../application';
  15. // --------------------------------------------------------------
  16. // The path to the Laravel directory.
  17. // --------------------------------------------------------------
  18. $laravel = '../laravel';
  19. // --------------------------------------------------------------
  20. // The path to the public directory.
  21. // --------------------------------------------------------------
  22. $public = __DIR__;
  23. // --------------------------------------------------------------
  24. // Launch Laravel.
  25. // --------------------------------------------------------------
  26. require $laravel.'/laravel.php';