Skip to content

Commit

Permalink
Drop support for Symfony < 6.4 & add support for Symfony 7 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsche authored Dec 5, 2023
1 parent b4e9eb8 commit 5cc316c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- '8.2'
- '8.3'
symfony-version:
- '5.4.*'
- '6.4.*'
- '7.0.*'

steps:
- name: Checkout code
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG-5.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
-----

* Drop support for PHP < 8.1
* Drop support for Symfony < 6.4 & Twig 2
* Add support for Symfony 7
* Require leapt/core-bundle 5
3 changes: 3 additions & 0 deletions UPGRADE-5.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ Upgrade from 4.x to 5.x
-----------------------

* Drop support for PHP < 8.1
* Drop support for Symfony < 6.4 & Twig 2
* Add support for Symfony 7
* Require leapt/core-bundle 5
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,24 @@
"php": "^8.2",
"ext-curl": "*",
"doctrine/orm": "^2.5",
"leapt/core-bundle": "^4.0",
"symfony/css-selector": "^5.4 || ^6.0",
"symfony/console": "^5.4 || ^6.0",
"symfony/dom-crawler": "^5.4 || ^6.0",
"symfony/filesystem": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/form": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/process": "^5.4 || ^6.0",
"twig/twig": "^2.4 || ^3.0"
"leapt/core-bundle": "^5.0",
"symfony/css-selector": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/dom-crawler": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/process": "^6.4 || ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2.1",
"mikey179/vfsstream": "^1.6.8",
"phpstan/phpstan": "^1.6.8",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.4 || ^6.0"
"symfony/browser-kit": "^6.4 || ^7.0"
},
"scripts": {
"ci": [
Expand Down

0 comments on commit 5cc316c

Please sign in to comment.