* cli command support added

* nightly cache update cli command implemented
This commit is contained in:
Dávid Danyi
2017-03-30 12:37:51 +02:00
parent 6e823bc0ea
commit 68e66ddedf
7 changed files with 87 additions and 4 deletions

View File

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