* koin service and cli stuff added

This commit is contained in:
Danyi Dávid
2017-09-05 23:04:28 +02:00
parent 946d00ff93
commit 8184c1e07d
15 changed files with 801 additions and 55 deletions

View File

@@ -0,0 +1,15 @@
<?php
return [
'dependencies' => [
'invokables' => [],
'factories' => [
App\Command\KoinImportCommand::class => App\Command\KoinImportCommandFactory::class,
],
],
'console' => [
'commands' => [
App\Command\KoinImportCommand::class,
],
],
];

View File

@@ -8,4 +8,6 @@
*/
return [
'koin.user' => '',
'koin.pass' => '',
];

View File

@@ -11,6 +11,7 @@ $cacheConfig = [
];
$aggregator = new ConfigAggregator([
\Zend\Validator\ConfigProvider::class,
// Include cache configuration
new ArrayProvider($cacheConfig),