This commit is contained in:
2024-01-17 10:33:11 -03:00
parent c4f486d3fa
commit 674aba801e
27 changed files with 1210 additions and 2 deletions

View File

@ -6,7 +6,9 @@ return [
'resources' => DI\String('{base}/resources'),
'routes' => DI\String('{resources}/routes'),
'cache' => DI\String('{base}/cache'),
'templates' => DI\String('{resources}/views')
'templates' => DI\String('{resources}/views'),
'public' => DI\String('{base}/public'),
'uploads' => DI\String('{public}/uploads')
]);
}
];

View File

@ -0,0 +1,8 @@
<?php
return [
'nubox' => function() {
return new DI\Container([
'url' => 'https://api.nubox.com/Nubox.API'
]);
}
];