1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-27 12:00:26 +02:00

[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
This commit is contained in:
David King
2012-10-21 14:20:52 -04:00
committed by Igor Wiedler
parent f9f03435f0
commit ad3edf505a

View File

@@ -4,6 +4,7 @@
"symfony/config": "2.1.*", "symfony/config": "2.1.*",
"symfony/dependency-injection": "2.1.*", "symfony/dependency-injection": "2.1.*",
"symfony/event-dispatcher": "2.1.*", "symfony/event-dispatcher": "2.1.*",
"symfony/http-kernel": "2.1.*",
"symfony/yaml": "2.1.*" "symfony/yaml": "2.1.*"
}, },
"require-dev": { "require-dev": {