Skip to content

Commit

Permalink
Add support for PHP 8.4 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kocal authored Sep 1, 2024
1 parent a3b29c0 commit 94e425d
Show file tree
Hide file tree
Showing 8 changed files with 76 additions and 72 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,25 @@ jobs:
SYMFONY_VERSION: 6.4.* # Last 6.1.x version
- PHP_VERSION: 8.3
SYMFONY_VERSION: 6.4.* # Last 6.1.x version
- PHP_VERSION: 8.4
SYMFONY_VERSION: 6.4.* # Last 6.1.x version

- PHP_VERSION: 8.2
SYMFONY_VERSION: 7.0.* # Last 7.0.x version
- PHP_VERSION: 8.3
SYMFONY_VERSION: 7.0.* # Last 7.0.x version
- PHP_VERSION: 8.4
SYMFONY_VERSION: 7.0.* # Last 7.0.x version

- PHP_VERSION: 8.2
SYMFONY_VERSION: 7.1.* # Last 7.1.x version
- PHP_VERSION: 8.3
SYMFONY_VERSION: 7.1.* # Last 7.1.x version
- PHP_VERSION: 8.4
SYMFONY_VERSION: 7.1.* # Last 7.1.x version

# Test the latest Symfony development version with the latest PHP version
- PHP_VERSION: 8.3
- PHP_VERSION: 8.4
SYMFONY_VERSION: 7.* # Last 7.x version
STABILITY: dev

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"post-update-cmd": ["@composer bin all update --ansi", "@auto"]
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"phpunit/phpunit": "^9.1 || ^10.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
Expand Down
4 changes: 2 additions & 2 deletions tools/ecs/composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require": {
"symplify/easy-coding-standard": "^12.1"
"symplify/easy-coding-standard": "^12.3"
}
}
}
17 changes: 10 additions & 7 deletions tools/ecs/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions tools/phpstan/composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"require": {
"phpstan/phpstan": "^1.10.57",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpstan/phpstan-strict-rules": "^1.5.2",
"phpstan/phpstan-symfony": "^1.3.7",
"phpstan/phpstan-webmozart-assert": "^1.2.4"
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-symfony": "^1.4",
"phpstan/phpstan-webmozart-assert": "^1.2"
}
}
70 changes: 33 additions & 37 deletions tools/phpstan/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tools/rector/composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require": {
"rector/rector": "^0.19.2"
"rector/rector": "^1.2"
}
}
}
33 changes: 16 additions & 17 deletions tools/rector/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 94e425d

Please sign in to comment.