Skip to content

Commit

Permalink
feat: Symfony 7 support (#76)
Browse files Browse the repository at this point in the history
* feat: Symfony 7 support

Adjusted the CI test matrix to add PHP 8.3 and only supported Symfony versions

* minor

---------

Co-authored-by: Nyholm <tobias.nyholm@gmail.com>
  • Loading branch information
kbond and Nyholm authored Nov 16, 2023
1 parent 0e721e5 commit 3c8e756
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,21 @@ jobs:
php:
- '8.1'
- '8.2'
- '8.3'
dependency:
- ''
symfony:
- '5.4.*'
- '6.3.*'
- '6.4.*@beta'
- '7.0.*@beta'
- '6.4.*'
- '7.0.*'
include:
- php: '8.1'
symfony: '5.4.*'
dependency: 'lowest'
exclude:
- php: '8.1'
symfony: '7.0.*@beta'
symfony: '7.0.*'
fail-fast: false
steps:
- name: Checkout
Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"require": {
"php": "^8.1",
"symfony/config": "^5.4 || ^6.3 || ^7.0"
"symfony/config": "^5.4 || ^6.2 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10.0"
Expand All @@ -33,5 +33,7 @@
"branch-alias": {
"dev-master": "5.1.x-dev"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 3c8e756

Please sign in to comment.