index.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. ini_set('display_errors',1);
  3. error_reporting(E_ALL);
  4. /**
  5. * Laravel - A PHP Framework For Web Artisans
  6. *
  7. * @package Laravel
  8. * @author Taylor Otwell <taylor@laravel.com>
  9. */
  10. define('LARAVEL_START', microtime(true));
  11. /*
  12. |--------------------------------------------------------------------------
  13. | Register The Auto Loader
  14. |--------------------------------------------------------------------------
  15. |
  16. | Composer provides a convenient, automatically generated class loader for
  17. | our application. We just need to utilize it! We'll simply require it
  18. | into the script here so that we don't have to worry about manual
  19. | loading any of our classes later on. It feels great to relax.
  20. |
  21. */
  22. require __DIR__.'/../vendor/autoload.php';
  23. /*
  24. |--------------------------------------------------------------------------
  25. | Turn On The Lights
  26. |--------------------------------------------------------------------------
  27. |
  28. | We need to illuminate PHP development, so let us turn on the lights.
  29. | This bootstraps the framework and gets it ready for use, then it
  30. | will load up this application so that we can run it and send
  31. | the responses back to the browser and delight our users.
  32. |
  33. */
  34. $app = require_once __DIR__.'/../bootstrap/app.php';
  35. /*
  36. |--------------------------------------------------------------------------
  37. | Run The Application
  38. |--------------------------------------------------------------------------
  39. |
  40. | Once we have the application, we can handle the incoming request
  41. | through the kernel, and send the associated response back to
  42. | the client's browser allowing them to enjoy the creative
  43. | and wonderful application we have prepared for them.
  44. |
  45. */
  46. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
  47. $response = $kernel->handle(
  48. $request = Illuminate\Http\Request::capture()
  49. );
  50. $response->send();
  51. $kernel->terminate($request, $response);