Skip to content

Commit

Permalink
Add PHP 8.3 & Symfony 6.4 & 7.0 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
HypeMC committed Jan 1, 2024
1 parent d6e8642 commit 3bbaadb
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 11 deletions.
42 changes: 37 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,24 +96,56 @@ jobs:
- php: '8.1'
symfony: '6.3'
dependencies: 'lowest'
- php: '8.1'
symfony: '6.4'
dependencies: 'highest'
- php: '8.1'
symfony: '6.4'
dependencies: 'lowest'

- php: '8.2'
symfony: '6.1'
symfony: '6.4'
dependencies: 'highest'
- php: '8.2'
symfony: '6.1'
symfony: '6.4'
dependencies: 'lowest'
- php: '8.2'
symfony: '6.2'
symfony: '7.0'
dependencies: 'highest'
- php: '8.2'
symfony: '7.0'
dependencies: 'lowest'

- php: '8.3'
symfony: '6.1'
dependencies: 'highest'
- php: '8.3'
symfony: '6.1'
dependencies: 'lowest'
- php: '8.3'
symfony: '6.2'
dependencies: 'highest'
- php: '8.3'
symfony: '6.2'
dependencies: 'lowest'
- php: '8.2'
- php: '8.3'
symfony: '6.3'
dependencies: 'highest'
- php: '8.2'
- php: '8.3'
symfony: '6.3'
dependencies: 'lowest'
- php: '8.3'
symfony: '6.4'
dependencies: 'highest'
- php: '8.3'
symfony: '6.4'
dependencies: 'lowest'
- php: '8.3'
symfony: '7.0'
dependencies: 'highest'
- php: '8.3'
symfony: '7.0'
dependencies: 'lowest'
env:
SYMFONY_REQUIRE: ${{ matrix.symfony }}.*
SYMFONY_PHPUNIT_VERSION: ${{ matrix.php >= 7.4 && '9.5' || '8.5' }}
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
"require": {
"php": ">=7.2",
"ext-dom": "*",
"symfony/config": "^4.4 || ^5.2 || ^6.0",
"symfony/console": "^4.4 || ^5.2 || ^6.0",
"symfony/dependency-injection": "^4.4.2 || ^5.2 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.2 || ^6.0",
"symfony/process": "^4.4 || ^5.2 || ^6.0",
"symfony/yaml": "^4.4 || ^5.2 || ^6.0"
"symfony/config": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4.2 || ^5.2 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/process": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/yaml": "^4.4 || ^5.2 || ^6.0 || ^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4.1"
Expand Down

0 comments on commit 3bbaadb

Please sign in to comment.