From ad3edf505a9e9ef7f139b033f70a1106539ce0de Mon Sep 17 00:00:00 2001 From: David King Date: Sun, 21 Oct 2012 14:20:52 -0400 Subject: [PATCH] [feature/compiled-dic] Add HttpKernel; the Extension class is loaded from it The phpbb_di_extension_* classes extend the Extension class that is included in the HttpKernel component. If I don't include HttpKernel I have to implement the ExtensionInterface from the DependencyInjection component and have to define all of the methods; this way, I can just overwrite what I need. PHPBB3-10864 --- phpBB/composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/composer.json b/phpBB/composer.json index 5e88144bc4..380bdc367c 100644 --- a/phpBB/composer.json +++ b/phpBB/composer.json @@ -4,6 +4,7 @@ "symfony/config": "2.1.*", "symfony/dependency-injection": "2.1.*", "symfony/event-dispatcher": "2.1.*", + "symfony/http-kernel": "2.1.*", "symfony/yaml": "2.1.*" }, "require-dev": {