Cachet/artisan

16 lines
350 B
Plaintext
Raw Normal View History

2014-11-16 22:26:08 +00:00
#!/usr/bin/env php
<?php
2024-04-05 18:36:37 +00:00
use Symfony\Component\Console\Input\ArgvInput;
2024-01-19 20:03:17 +00:00
2024-04-05 18:36:37 +00:00
define('LARAVEL_START', microtime(true));
2014-11-16 22:26:08 +00:00
2024-04-05 18:36:37 +00:00
// Register the Composer autoloader...
2024-01-19 20:03:17 +00:00
require __DIR__.'/vendor/autoload.php';
2014-11-16 22:26:08 +00:00
2024-04-05 18:36:37 +00:00
// Bootstrap Laravel and handle the command...
$status = (require_once __DIR__.'/bootstrap/app.php')
->handleCommand(new ArgvInput);
2014-11-16 22:26:08 +00:00
exit($status);