This commit is contained in:
2023-11-25 00:56:18 -03:00
parent ab1647eed3
commit 7945579e80
27 changed files with 459 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
return [
'folders' => function() {
$arr = ['base' => dirname(__FILE__, 3)];
$arr['resources'] = implode(DIRECTORY_SEPARATOR, [
$arr['base'],
'resources'
]);
$arr['commands'] = implode(DIRECTORY_SEPARATOR, [
$arr['resources'],
'commands'
]);
return (object) $arr;
}
];