initial commit

This commit is contained in:
silas
2018-05-15 17:30:16 +02:00
commit 1efcd2526b
105 changed files with 18204 additions and 0 deletions

15
config/development.config.php Executable file
View File

@@ -0,0 +1,15 @@
<?php
return [
// Additional modules to include when in development mode
'modules' => [
// 'ZendDeveloperTools',
// 'ZendDeveloperToolsTime',
],
// Configuration overrides during development mode
'module_listener_options' => [
'config_glob_paths' => [realpath(__DIR__) . '/autoload/{,*.}{global,local}-development.php'],
'config_cache_enabled' => false,
'module_map_cache_enabled' => false,
],
];