Files
totalsport/bootstrap/common/config.php
2020-04-29 23:47:01 -04:00

20 lines
449 B
PHP

<?php
return [
'urls.base' => getenv('BASE_URL'),
'folders.base' => dirname(__DIR__, 2),
'folders.resources' => DI\string(implode(DIRECTORY_SEPARATOR, [
'{folders.base}',
'resources'
])),
'folders.routes' => DI\string(implode(DIRECTORY_SEPARATOR, [
'{folders.resources}',
'routes'
])),
'folders.images' => DI\string(implode(DIRECTORY_SEPARATOR, [
'{folders.base}',
'public',
'assets',
'images'
]))
];