1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-16 21:54:00 +02:00

[ticket/14492] Define extensions to install in config not via cli argument

PHPBB3-14492
This commit is contained in:
Marc Alexander
2016-03-02 11:53:20 +01:00
parent 69dece6197
commit ffe900c72d
7 changed files with 16 additions and 18 deletions

View File

@@ -32,6 +32,10 @@ class updater_configuration implements ConfigurationInterface
->addDefaultsIfNotSet()
->children()
->enumNode('type')->values(['all','db_only'])->defaultValue('all')->end()
->arrayNode('extensions')
->prototype('scalar')->end()
->defaultValue([])
->end()
->end()
;