Skip to content

Commit

Permalink
Drop Symfony 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Feb 4, 2024
1 parent c6fe67e commit e743f4c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: true
matrix:
php: ['8.1', '8.2', '8.3']
symfony: ['5.4.*', '6.3.*', '6.4.*']
symfony: ['5.4.*', '6.4.*', '7.0.*']
composer-flags: ['--prefer-stable']
can-fail: [false]
has-mongodb: [true]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: composer update --prefer-stable --prefer-dist
env:
SYMFONY_REQUIRE: '6.4.*'
SYMFONY_REQUIRE: '7.0.*'

- name: Run PHPStan
run: vendor/bin/phpstan analyze --error-format=github
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.11.0 (2024-??-??)

- Drop support for Symfony 6.3

## 1.10.0 (2023-12-12)

- Raise PHP requirement to 8.1
Expand Down
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"require": {
"php": "^8.1",
"moneyphp/money": "^3.3 || ^4.0",
"symfony/config": "^5.4 || ^6.3 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.3 || ^7.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/http-kernel": "^5.4 || ^6.3 || ^7.0"
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.1.1",
Expand All @@ -25,13 +25,13 @@
"phpstan/phpstan-phpunit": "1.3.15",
"phpstan/phpstan-symfony": "1.3.7",
"phpunit/phpunit": "9.6.16",
"symfony/form": "^5.4 || ^6.3 || ^7.0",
"symfony/intl": "^5.4 || ^6.3 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.3 || ^7.0",
"symfony/property-access": "^5.4 || ^6.3 || ^7.0",
"symfony/serializer": "^5.4 || ^6.3 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.3 || ^7.0",
"symfony/validator": "^5.4 || ^6.3 || ^7.0",
"symfony/form": "^5.4 || ^6.4 || ^7.0",
"symfony/intl": "^5.4 || ^6.4 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.4 || ^7.0",
"symfony/property-access": "^5.4 || ^6.4 || ^7.0",
"symfony/serializer": "^5.4 || ^6.4 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/validator": "^5.4 || ^6.4 || ^7.0",
"twig/twig": "^2.13 || ^3.0"
},
"conflict": {
Expand All @@ -40,9 +40,9 @@
"doctrine/mongodb-odm-bundle": "<4.3",
"doctrine/orm": "<2.8",
"jms/serializer": "<3.14",
"symfony/form": "<5.4 || >=6.0 <6.3",
"symfony/serializer": "<5.4 || >=6.0 <6.3",
"symfony/validator": "<5.4 || >=6.0 <6.3",
"symfony/form": "<5.4 || >=6.0 <6.4",
"symfony/serializer": "<5.4 || >=6.0 <6.4",
"symfony/validator": "<5.4 || >=6.0 <6.4",
"twig/twig": "<2.13"
},
"suggest": {
Expand Down

0 comments on commit e743f4c

Please sign in to comment.