You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
468 B

  1. <?php
  2. use Illuminate\Http\Request;
  3. define('LARAVEL_START', microtime(true));
  4. // Determine if the application is in maintenance mode...
  5. if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
  6. require $maintenance;
  7. }
  8. // Register the Composer autoloader...
  9. require __DIR__.'/../vendor/autoload.php';
  10. // Bootstrap Laravel and handle the request...
  11. (require_once __DIR__.'/../bootstrap/app.php')
  12. ->handleRequest(Request::capture());