1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-17 18:36:39 +02:00

fix(core): fix flextype config loading.

BREAKING CHANGES

1. /project/config/settings.yaml move to /project/config/flextype/settings.yaml
2. remove constant PATH['config'], use - PATH['project'] . '/config/'
This commit is contained in:
Awilum
2020-06-27 09:19:21 +03:00
parent 7b722673ce
commit cd89c9e1a4
6 changed files with 5 additions and 6 deletions

View File

@@ -33,7 +33,6 @@ define('ROOT_DIR', str_replace(DIRECTORY_SEPARATOR, '/', getcwd()));
*/
define('PATH', [
'project' => ROOT_DIR . '/project',
'config' => ROOT_DIR . '/src/flextype/config',
'cache' => ROOT_DIR . '/var/cache',
'logs' => ROOT_DIR . '/var/logs',
]);