config en cours, bloque sur composer et son utilisation du proxy
This commit is contained in:
18
bin/homestead
Normal file
18
bin/homestead
Normal file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
// Are we running global or per project?
|
||||
if(is_file( __DIR__.'/../vendor/autoload.php')) {
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
} else {
|
||||
require __DIR__.'/../../../autoload.php';
|
||||
}
|
||||
|
||||
$app = new Symfony\Component\Console\Application('Laravel Homestead', '15.0.3');
|
||||
|
||||
$app->add(new Laravel\Homestead\MakeCommand);
|
||||
$app->add(new Laravel\Homestead\WslApplyFeatures);
|
||||
$app->add(new Laravel\Homestead\WslCreateSiteCommand);
|
||||
$app->add(new Laravel\Homestead\WslCreateDatabaseCommand());
|
||||
|
||||
$app->run();
|
Reference in New Issue
Block a user