2018-11-11 12:01:18 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'dependencies' => [
|
|
|
|
|
'invokables' => [],
|
|
|
|
|
'factories' => [
|
|
|
|
|
App\Command\InitializeFixtureCommand::class => App\Command\InitializeFixtureCommandFactory::class,
|
|
|
|
|
// App\Command\ConvertMaintenanceHashCommand::class => App\Command\ConvertMaintenanceHashCommandFactory::class,
|
2018-11-12 07:09:32 +01:00
|
|
|
// App\Command\DebugMailCommand::class => App\Command\DebugMailCommandFactory::class,
|
2018-11-11 12:01:18 +01:00
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
'console' => [
|
|
|
|
|
'commands' => [
|
|
|
|
|
App\Command\InitializeFixtureCommand::class,
|
|
|
|
|
// App\Command\ConvertMaintenanceHashCommand::class,
|
2018-11-12 07:09:32 +01:00
|
|
|
// App\Command\DebugMailCommand::class,
|
2018-11-11 12:01:18 +01:00
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
];
|