Skip to content

Commit

Permalink
Add Symfony 7 and remove Symfony 4
Browse files Browse the repository at this point in the history
  • Loading branch information
tareqas committed Jun 24, 2024
1 parent 872986e commit 1448a69
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,27 @@ jobs:
strategy:
fail-fast: false
matrix:
sf-version: [ '^4.4', '^5.4', '^6.3' ]
php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
sf-version: [ '^5.4', '^6.4', '^7.0' ]
php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
exclude:
- sf-version: '^4.4'
- sf-version: '^6.4'
php-version: '7.2'
- sf-version: '^6.4'
php-version: '7.3'
- sf-version: '^6.4'
php-version: '7.4'
- sf-version: '^6.4'
php-version: '8.0'
- sf-version: '^4.4'
php-version: '8.1'
- sf-version: '^4.4'
php-version: '8.2'
- sf-version: '^6.3'
- sf-version: '^7.0'
php-version: '7.2'
- sf-version: '^6.3'
- sf-version: '^7.0'
php-version: '7.3'
- sf-version: '^6.3'
- sf-version: '^7.0'
php-version: '7.4'
- sf-version: '^6.3'
- sf-version: '^7.0'
php-version: '8.0'
- sf-version: '^7.0'
php-version: '8.1'

steps:
- uses: actions/checkout@master
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
"require": {
"php": ">=7.2",
"ext-json": "*",
"jms/serializer": "^3.17",
"jms/serializer": "3.29.1",
"psr/log": "^1.0",
"symfony/http-client": "^4.4|^5.4|^6.3",
"symfony/console": "^4.4|^5.4|^6.3",
"symfony/expression-language": "^4.4|^5.4|^6.3"
"symfony/http-client": "^5.4|^6.4|^7.0",
"symfony/console": "^5.4|^6.4|^7.0",
"symfony/expression-language": "^5.4|^6.4|^7.0"
},
"require-dev": {
"monolog/monolog": "^1.4",
"symfony/phpunit-bridge": "^4.4|^5.4|^6.3",
"symfony/var-dumper": "^4.4|^5.4|^6.3"
"symfony/phpunit-bridge": "^5.4|^6.4|^7.0",
"symfony/var-dumper": "^5.4|^6.4|^7.0"
},
"suggest": {
"monolog/monolog": "Will add some log capability to this library"
Expand Down

0 comments on commit 1448a69

Please sign in to comment.