Skip to content

Commit adbf6f1

Browse files
committed
be explicit about required dependencies
Depending on the FrameworkBundle implicitly pulling into all the required packages is fragile and likely to break.
1 parent d5690af commit adbf6f1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"require": {
1515
"php": ">=5.3.3",
1616
"sentry/sentry": ">=1.5.0",
17-
"symfony/framework-bundle": ">=2.4.0"
17+
"symfony/config": "^2.4|^3.0|^4.0",
18+
"symfony/console": "^2.4|^3.0|^4.0",
19+
"symfony/dependency-injection": "^2.4|^3.0|^4.0",
20+
"symfony/event-dispatcher": "^2.4|^3.0|^4.0",
21+
"symfony/http-kernel": "^2.4|^3.0|^4.0",
22+
"symfony/security-core": "^2.4|^3.0|^4.0"
1823
},
1924
"require-dev": {
2025
"friendsofphp/php-cs-fixer": "^1.8.0",

0 commit comments

Comments
 (0)