Skip to content

Commit

Permalink
Support Symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
gregurco committed Dec 4, 2023
1 parent b890cc8 commit f9e1cf6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 22 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,17 @@ jobs:
matrix:
os: [ubuntu-latest]
php:
- '7.1'
- '7.4'
- '8.0'
- '8.1'
- '7.2'
- '8.3'
symfony:
- '4.4.*'
- '5.0.*'
- '5.4.*'
- '6.0.*'
- '7.0.*'
exclude:
- php: '7.1'
symfony: '5.0.*' # requires PHP ^7.2.5
- php: '7.1'
symfony: '5.4.*' # requires PHP ^7.2.5
- php: '7.1'
symfony: '6.0.*' # requires PHP ^7.2.5
- php: '7.4'
symfony: '6.0.*' # requires PHP ^8.0.2
- php: '7.2'
symfony: '6.0.*' # requires PHP >=8.1
- php: '7.2'
symfony: '7.0.*' # requires PHP >=8.2

runs-on: ${{ matrix.os }}

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@
}
],
"require": {
"php": ">=7.1",
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.5.8|^7.4.5",
"guzzlehttp/promises": "^1.5.3|^2.0",
"guzzlehttp/psr7": "^1.9.1|^2.5",
"symfony/framework-bundle": "~4.0|~5.0|~6.0",
"symfony/expression-language": "~4.0|~5.0|~6.0",
"symfony/stopwatch": "~4.0|~5.0|~6.0",
"symfony/framework-bundle": "~5.0|~6.0|~7.0",
"symfony/expression-language": "~5.0|~6.0|~7.0",
"symfony/stopwatch": "~5.0|~6.0|~7.0",
"psr/log": "~1.0|~2.0|~3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~4.0|~5.0|~6.0",
"symfony/twig-bundle": "~4.0|~5.0|~6.0",
"symfony/var-dumper": "~4.0|~5.0|~6.0",
"symfony/yaml": "~4.0|~5.0|~6.0"
"symfony/phpunit-bridge": "~5.0|~6.0|~7.0",
"symfony/twig-bundle": "~5.0|~6.0|~7.0",
"symfony/var-dumper": "~5.0|~6.0|~7.0",
"symfony/yaml": "~5.0|~6.0|~7.0"
},
"suggest": {
"namshi/cuzzle": "Outputs Curl command on profiler's page for debugging purposes"
Expand Down

0 comments on commit f9e1cf6

Please sign in to comment.