* koin service and cli stuff added
This commit is contained in:
15
config/autoload/cli.global.php
Normal file
15
config/autoload/cli.global.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'dependencies' => [
|
||||
'invokables' => [],
|
||||
'factories' => [
|
||||
App\Command\KoinImportCommand::class => App\Command\KoinImportCommandFactory::class,
|
||||
],
|
||||
],
|
||||
'console' => [
|
||||
'commands' => [
|
||||
App\Command\KoinImportCommand::class,
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -8,4 +8,6 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'koin.user' => '',
|
||||
'koin.pass' => '',
|
||||
];
|
||||
|
||||
@@ -11,6 +11,7 @@ $cacheConfig = [
|
||||
];
|
||||
|
||||
$aggregator = new ConfigAggregator([
|
||||
\Zend\Validator\ConfigProvider::class,
|
||||
// Include cache configuration
|
||||
new ArrayProvider($cacheConfig),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user