Skip to content

Commit b7b3e20

Browse files
bug #62411 [HttpKernel] Conflict with symfony/flex < 2.10 (nicolas-grekas)
This PR was merged into the 7.4 branch. Discussion ---------- [HttpKernel] Conflict with symfony/flex < 2.10 | Q | A | ------------- | --- | Branch? | 7.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT symfony/flex#1070 is a mandatory fix to have the new `APP_SHARE_DIR` env var work correctly. This will also encourage people to change their flex requirement: at the moment, it's very easy to forget to bump to `^2` when your project already has a `^1` constraint. Yet, flex v1 isn't maintained anymore. Commits ------- af9703c [HttpKernel] Conflict with symfony/flex < 2.10
2 parents 1bb68bd + af9703c commit b7b3e20

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@
181181
"masterminds/html5": "<2.6",
182182
"phpdocumentor/reflection-docblock": "<5.2",
183183
"phpdocumentor/type-resolver": "<1.5.1",
184-
"phpunit/phpunit": "<7.5|9.1.2"
184+
"phpunit/phpunit": "<7.5|9.1.2",
185+
"symfony/flex": "<2.10"
185186
},
186187
"config": {
187188
"allow-plugins": {

src/Symfony/Component/HttpKernel/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"symfony/form": "<6.4",
6161
"symfony/dependency-injection": "<6.4",
6262
"symfony/doctrine-bridge": "<6.4",
63+
"symfony/flex": "<2.10",
6364
"symfony/http-client": "<6.4",
6465
"symfony/http-client-contracts": "<2.5",
6566
"symfony/mailer": "<6.4",

0 commit comments

Comments
 (0)