CLI
This commit is contained in:
2
cli/setup/settings/env.php
Normal file
2
cli/setup/settings/env.php
Normal file
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
return $_ENV;
|
15
cli/setup/settings/folders.php
Normal file
15
cli/setup/settings/folders.php
Normal 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;
|
||||
}
|
||||
];
|
Reference in New Issue
Block a user