From 47a6a2985554f0736ed014b0713cb6ac04d155c4 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Tue, 22 May 2012 22:22:14 +0200 Subject: [PATCH] [FrameworkBundle] Added a missing dependency to DI The bundle class extends ContainerAware so the DI component is a required dependency of the bundle. --- src/Symfony/Bundle/FrameworkBundle/composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json index 90304872ca..a81d6189d4 100644 --- a/src/Symfony/Bundle/FrameworkBundle/composer.json +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -17,6 +17,7 @@ ], "require": { "php": ">=5.3.2", + "symfony/dependency-injection": "self.version", "symfony/event-dispatcher": "self.version", "symfony/http-kernel": "self.version", "symfony/routing": "self.version",