itskp-odense/installer/bin/laravel

14 lines
331 B
PHP

#!/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', '4.2.5');
$app->add(new Laravel\Installer\Console\NewCommand);
$app->run();