20 lines
678 B
PHP
20 lines
678 B
PHP
<?php
|
|
|
|
return [
|
|
'dependencies' => [
|
|
'invokables' => [],
|
|
'factories' => [
|
|
App\Command\InitializeFixtureCommand::class => App\Command\InitializeFixtureCommandFactory::class,
|
|
// App\Command\ConvertMaintenanceHashCommand::class => App\Command\ConvertMaintenanceHashCommandFactory::class,
|
|
// App\Command\DebugMailCommand::class => App\Command\DebugMailCommandFactory::class,
|
|
],
|
|
],
|
|
'console' => [
|
|
'commands' => [
|
|
App\Command\InitializeFixtureCommand::class,
|
|
// App\Command\ConvertMaintenanceHashCommand::class,
|
|
// App\Command\DebugMailCommand::class,
|
|
],
|
|
],
|
|
];
|