v0.0.0 Initial Commit

This commit is contained in:
Anders
2021-06-01 10:17:03 +02:00
commit 78df7dd754
3412 changed files with 354795 additions and 0 deletions
+13
View File
@@ -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();