Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
svpernova09 committed Sep 10, 2024
2 parents 9db11b4 + a5c6982 commit 7a56920
Show file tree
Hide file tree
Showing 19 changed files with 363 additions and 274 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: tests

on:
push:
pull_request:
Expand Down
10 changes: 5 additions & 5 deletions bin/homestead
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ if(is_file( __DIR__.'/../vendor/autoload.php')) {
require __DIR__.'/../../../autoload.php';
}

$app = new Symfony\Component\Console\Application('Laravel Homestead', '15.0.3');
$app = new Symfony\Component\Console\Application('Svpernova09 Homestead', '15.1.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->add(new Svpernova\Homestead\MakeCommand);
$app->add(new Svpernova\Homestead\WslApplyFeatures);
$app->add(new Svpernova\Homestead\WslCreateSiteCommand);
$app->add(new Svpernova\Homestead\WslCreateDatabaseCommand());

$app->run();
12 changes: 4 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "laravel/homestead",
"description": "A virtual machine for web artisans.",
"name": "svpernova09/homestead",
"description": "A fork of laravel/homestead.",
"require": {
"php": "^8.1 || <8.3",
"php": "^8.1 || <8.4",
"symfony/console": "^6.0 || ^7.0",
"symfony/process": "^6.0 || ^7.0",
"symfony/yaml": "^6.0 || ^7.0"
Expand All @@ -14,18 +14,14 @@
},
"license": "MIT",
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
},
{
"name": "Joe Ferguson",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Laravel\\Homestead\\": "src/"
"Svpernova\\Homestead\\": "src/"
}
},
"autoload-dev": {
Expand Down
Loading

0 comments on commit 7a56920

Please sign in to comment.