config en cours, bloque sur composer et son utilisation du proxy

This commit is contained in:
2024-06-12 14:35:18 +02:00
commit c2ddfbcd22
137 changed files with 12768 additions and 0 deletions

18
bin/homestead Normal file
View 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();