Skip to content

Commit

Permalink
Allow PHP 8.4, drop Symfony 7.0, test on 7.2 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Nov 8, 2024
1 parent 016d8b6 commit 29b9d36
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.2', '8.3']
symfony: ['6.4.*', '7.0.*', '7.1.*']
php: ['8.2', '8.3', '8.4']
symfony: ['6.4.*', '7.1.*', '7.2.*@beta']
composer-flags: ['--prefer-stable']
can-fail: [false]
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: composer update --prefer-stable --prefer-dist
env:
SYMFONY_REQUIRE: '7.1.*'
SYMFONY_REQUIRE: '7.2.*@beta'

- name: Run PHPStan
run: vendor/bin/phpstan analyze --error-format=github
28 changes: 14 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
],
"license": "MIT",
"require": {
"php": "8.2.* || 8.3.*",
"php": "8.2.* || 8.3.* || 8.4.*",
"ext-pcntl": "*",
"babdev/websocket-server": "0.1.*",
"symfony/config": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/config": "^6.4 || ^7.1",
"symfony/console": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.1",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/routing": "^6.4 || ^7.0",
"symfony/security-core": "^6.4 || ^7.0"
"symfony/framework-bundle": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/routing": "^6.4 || ^7.1",
"symfony/security-core": "^6.4 || ^7.1"
},
"require-dev": {
"doctrine/dbal": "^3.4 || ^4.0",
Expand All @@ -41,9 +41,9 @@
"ratchet/rfc6455": "^0.3.1",
"react/event-loop": "^1.3",
"rector/rector": "1.2.10",
"symfony/cache": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0"
"symfony/cache": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/phpunit-bridge": "^6.4 || ^7.1"
},
"conflict": {
"doctrine/dbal": "<3.4 || >=5.0",
Expand All @@ -53,8 +53,8 @@
"psr/log": ">=4.0",
"ratchet/rfc6455": "<0.3.1 || >=0.4",
"react/event-loop": "<1.3 || >=2.0",
"symfony/cache": "<6.4 || >=8.0",
"symfony/http-foundation": "<6.4 || >=8.0"
"symfony/cache": "<6.4 || >=7.0,<7.1 || >=8.0",
"symfony/http-foundation": "<6.4 || >=7.0,<7.1 || >=8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ The below table shows the supported PHP and Symfony versions for this bundle.

| Version | Status | PHP Versions | Symfony Versions |
|---------|----------------|--------------|------------------|
| 1.x | In Development | 8.2-8.3 | 6.4, 7.0 |
| 1.x | In Development | 8.2-8.4 | 6.4, 7.1-7.2 |

0 comments on commit 29b9d36

Please sign in to comment.