phpldapadmin/artisan

16 lines
350 B
Plaintext
Raw Normal View History

2019-05-14 17:52:49 +10:00
#!/usr/bin/env php
<?php
use Symfony\Component\Console\Input\ArgvInput;
2019-05-14 17:52:49 +10:00
define('LARAVEL_START', microtime(true));
2019-05-14 17:52:49 +10:00
// Register the Composer autoloader...
2019-05-14 17:52:49 +10:00
require __DIR__.'/vendor/autoload.php';
// Bootstrap Laravel and handle the command...
$status = (require_once __DIR__.'/bootstrap/app.php')
->handleCommand(new ArgvInput);
2019-05-14 17:52:49 +10:00
exit($status);