mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-08 22:56:12 +01:00
72d449b9bd
Related: #1120
26 lines
702 B
PHP
26 lines
702 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
|
|
|
|
use TTN\Tea\Command\CreateTestDataCommand;
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator) {
|
|
$services = $containerConfigurator->services()
|
|
->defaults()
|
|
->autowire()
|
|
->autoconfigure();
|
|
|
|
$services->load('TTN\\Tea\\', '../Classes/*')
|
|
->exclude('../Classes/Domain/Model/*');
|
|
|
|
$services->set(CreateTestDataCommand::class)
|
|
->tag(
|
|
'console.command',
|
|
[
|
|
'command' => 'tea:createtestdata',
|
|
'description' => 'Create test data in existing sysfolder',
|
|
]
|
|
);
|
|
};
|