Skip to content

Commit 23b4410

Browse files
oliverkleeSam Tuke
authored andcommitted
[FEATURE] System configuration from modules (#33)
1 parent f13a591 commit 23b4410

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
/bin/
77
/composer.lock
88
/Configuration/bundles.yml
9+
/Configuration/config_modules.yml
910
/Configuration/parameters.yml
1011
/Configuration/routing_modules.yml
1112
/nbproject

Tests/Integration/Composer/ScriptsTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,12 @@ public function parametersConfigurationFileExists()
148148
{
149149
self::assertFileExists(dirname(__DIR__, 3) . '/Configuration/parameters.yml');
150150
}
151+
152+
/**
153+
* @test
154+
*/
155+
public function modulesConfigurationFileExists()
156+
{
157+
self::assertFileExists(dirname(__DIR__, 3) . '/Configuration/config_modules.yml');
158+
}
151159
}

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"PhpList\\PhpList4\\Composer\\ScriptHandler::createPublicWebDirectory"
5656
],
5757
"update-configuration": [
58+
"PhpList\\PhpList4\\Composer\\ScriptHandler::createGeneralConfiguration",
5859
"PhpList\\PhpList4\\Composer\\ScriptHandler::createBundleConfiguration",
5960
"PhpList\\PhpList4\\Composer\\ScriptHandler::createRoutesConfiguration",
6061
"PhpList\\PhpList4\\Composer\\ScriptHandler::createParametersConfiguration",

0 commit comments

Comments
 (0)