Simple problems require simple solutions
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.

15 lines
350 B

  1. #!/usr/bin/env php
  2. <?php
  3. use Symfony\Component\Console\Input\ArgvInput;
  4. define('LARAVEL_START', microtime(true));
  5. // Register the Composer autoloader...
  6. require __DIR__.'/vendor/autoload.php';
  7. // Bootstrap Laravel and handle the command...
  8. $status = (require_once __DIR__.'/bootstrap/app.php')
  9. ->handleCommand(new ArgvInput);
  10. exit($status);