Skip to content

Instantly share code, notes, and snippets.

@patrickcurl
Created March 11, 2021 22:33
Show Gist options
  • Save patrickcurl/07757df3a06d08a5403b58a9160d8c26 to your computer and use it in GitHub Desktop.
Save patrickcurl/07757df3a06d08a5403b58a9160d8c26 to your computer and use it in GitHub Desktop.
#!/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