Created
March 11, 2021 22:33
-
-
Save patrickcurl/07757df3a06d08a5403b58a9160d8c26 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 Override', '4.2.0'); | |
$app->add(new LaravelCustomInstaller\Installer\Console\NewCommand); | |
$app->run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment