v0.0.0 Initial Commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#!/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();
|
||||
Reference in New Issue
Block a user