Skip to content

Commit 9777b54

Browse files
committed
Remove support for symfony < 6.4
1 parent a192cc6 commit 9777b54

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
stability:
2929
- "stable"
3030
symfony-version:
31-
- "5.4.*"
3231
- "6.4.*"
33-
- "7.0.x"
32+
- "7.0.*"
3433
driver-version:
3534
- "stable"
3635
dependencies:
@@ -41,10 +40,10 @@ jobs:
4140
php-version: "8.1"
4241
driver-version: "1.5.0"
4342
stability: "stable"
44-
symfony-version: "5.4.*"
43+
symfony-version: "6.4.*"
4544
exclude:
4645
- php-version: "8.1"
47-
symfony-version: "7.0.x"
46+
symfony-version: "7.0.*"
4847

4948
services:
5049
mongodb:

UPGRADE-5.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
UPGRADE FROM 4.x to 5.0
22
=======================
33

4+
* Add support for Symfony 7.0 and require at least Symfony 6.4
45
* The `doctrine:mongodb:tail-cursor` command and
56
`Doctrine\Bundle\MongoDBBundle\Cursor\TailableCursorProcessorInterface`
67
interface have been dropped. You should use

composer.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,27 @@
3030
"doctrine/persistence": "^2.2 || ^3.0",
3131
"jean85/pretty-package-versions": "^1.3.0 || ^2.0.1",
3232
"psr/log": "^1.0 || ^2.0 || ^3.0",
33-
"symfony/config": "^5.4 || ^6.2 || ^7.0",
34-
"symfony/console": "^5.4 || ^6.2 || ^7.0",
35-
"symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
33+
"symfony/config": "^6.4 || ^7.0",
34+
"symfony/console": "^6.4 || ^7.0",
35+
"symfony/dependency-injection": "^6.4 || ^7.0",
3636
"symfony/deprecation-contracts": "^2.1 || ^3.0",
37-
"symfony/doctrine-bridge": "^5.4.19 || ^6.2 || ^7.0",
38-
"symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
39-
"symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
40-
"symfony/options-resolver": "^5.4 || ^6.2 || ^7.0"
37+
"symfony/doctrine-bridge": "^6.4 || ^7.0",
38+
"symfony/framework-bundle": "^6.4 || ^7.0",
39+
"symfony/http-kernel": "^6.4 || ^7.0",
40+
"symfony/options-resolver": "^6.4 || ^7.0"
4141
},
4242
"require-dev": {
4343
"doctrine/coding-standard": "^11.0",
44-
"doctrine/data-fixtures": "^1.3",
44+
"doctrine/data-fixtures": "^1.7",
4545
"phpunit/phpunit": "^9.5.5",
4646
"psalm/plugin-symfony": "^5.0",
47-
"symfony/browser-kit": "^5.4 || ^6.2 || ^7.0",
48-
"symfony/form": "^5.4 || ^6.2 || ^7.0",
49-
"symfony/phpunit-bridge": "^6.2 || ^7.0",
50-
"symfony/security-bundle": "^5.4 || ^6.2 || ^7.0",
51-
"symfony/stopwatch": "^5.4 || ^6.2 || ^7.0",
52-
"symfony/validator": "^5.4 || ^6.2 || ^7.0",
53-
"symfony/yaml": "^5.4 || ^6.2 || ^7.0",
47+
"symfony/browser-kit": "^6.4 || ^7.0",
48+
"symfony/form": "^6.4 || ^7.0",
49+
"symfony/phpunit-bridge": "^6.4.1 || ^7.0.1",
50+
"symfony/security-bundle": "^6.4 || ^7.0",
51+
"symfony/stopwatch": "^6.4 || ^7.0",
52+
"symfony/validator": "^6.4 || ^7.0",
53+
"symfony/yaml": "^6.4 || ^7.0",
5454
"vimeo/psalm": "^5.12"
5555
},
5656
"conflict": {

0 commit comments

Comments
 (0)