Skip to content

Commit f5bfc79

Browse files
committed
bug #570 Fix Symfony 5 - dump-env (jderusse)
This PR was merged into the 1.4-dev branch. Discussion ---------- Fix Symfony 5 - dump-env Fixes #569 When using plugins, the composer autoloader use local project dependencies that match the plugin's `require`+`require-dev` dependencies. Given flex plugin requires-dev `symfony/dotenv: ^3.4|^4.0`, composer's autoloader was not able to load the class Dotenv when in a project that requires `symfony/dotenv: ^5.0`. Commits ------- 72c9a80 Fix Symfony 5 - dump-env
2 parents d1b68b9 + 72c9a80 commit f5bfc79

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
},
1616
"require-dev": {
1717
"composer/composer": "^1.0.2",
18-
"symfony/dotenv": "^3.4|^4.0",
19-
"symfony/phpunit-bridge": "^3.4.19|^4.1.8",
20-
"symfony/process": "^2.7|^3.0|^4.0"
18+
"symfony/dotenv": "^3.4|^4.0|^5.0",
19+
"symfony/phpunit-bridge": "^3.4.19|^4.1.8|^5.0",
20+
"symfony/process": "^2.7|^3.0|^4.0|^5.0"
2121
},
2222
"autoload": {
2323
"psr-4": {

0 commit comments

Comments
 (0)