Skip to content

Commit

Permalink
Update requirements to PHP 8.0, 8.1, Symfony ^6 (#1758)
Browse files Browse the repository at this point in the history
* Update requirements to PHP 8.0, 8.1, Symfony ^6

* Test on PHP 8.0, 8.1, dropping 7.4

* Tagging v13.2.0
  • Loading branch information
svpernova09 authored Jan 29, 2022
1 parent d67ec5a commit 5b677e5
Show file tree
Hide file tree
Showing 4 changed files with 229 additions and 444 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0]
php: [8.0, 8.1]

name: PHP_${{ matrix.php }}

Expand Down
2 changes: 1 addition & 1 deletion bin/homestead
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if(is_file( __DIR__.'/../vendor/autoload.php')) {
require __DIR__.'/../../../autoload.php';
}

$app = new Symfony\Component\Console\Application('Laravel Homestead', '13.1.1');
$app = new Symfony\Component\Console\Application('Laravel Homestead', '13.2.0');

$app->add(new Laravel\Homestead\MakeCommand);
$app->add(new Laravel\Homestead\WslApplyFeatures);
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "laravel/homestead",
"description": "A virtual machine for web artisans.",
"require": {
"php": "^7.4 || ^8.0",
"symfony/console": "~5.1",
"symfony/process": "~5.1",
"symfony/yaml": "~5.1"
"php": "^8.0 || <8.2",
"symfony/console": "^6.0",
"symfony/process": "^6.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand Down
Loading

0 comments on commit 5b677e5

Please sign in to comment.