Release inicial 1.0.0
This commit is contained in:
17
artisan
Executable file
17
artisan
Executable file
@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
require __DIR__ . '/dev/bootstrap.php';
|
||||
|
||||
use Symfony\Component\Console\Input\ArgvInput;
|
||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
||||
|
||||
// Cargar Laravel desde bootstrap.php
|
||||
$app = require __DIR__ . '/dev/bootstrap.php';
|
||||
|
||||
// Ejecutar Artisan
|
||||
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
|
||||
$status = $kernel->handle(new ArgvInput(), new ConsoleOutput());
|
||||
|
||||
$kernel->terminate(new ArgvInput(), $status);
|
||||
exit($status);
|
Reference in New Issue
Block a user