mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 03:54:10 +01:00
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
14 lines
275 B
JSON
14 lines
275 B
JSON
{
|
|
"minimum-stability": "beta",
|
|
"require": {
|
|
"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": {
|
|
"fabpot/goutte": "1.0.x-dev"
|
|
}
|
|
}
|