installer/bin/laravel

14 lines
331 B
Plaintext
Raw Normal View History

2024-08-19 08:12:27 +00:00
#!/usr/bin/env php
<?php
if (file_exists(__DIR__.'/../../../autoload.php')) {
require __DIR__.'/../../../autoload.php';
} else {
require __DIR__.'/../vendor/autoload.php';
}
$app = new Symfony\Component\Console\Application('Laravel Installer', '5.8.3');
$app->add(new Laravel\Installer\Console\NewCommand);
$app->run();