* executor basics added to repo

This commit is contained in:
Dávid Danyi
2017-03-17 16:30:19 +01:00
parent 2814f4f98e
commit 8bd0b827bf
14 changed files with 1537 additions and 3 deletions

View File

@@ -15,6 +15,7 @@ return [
'invokables' => [
// Fully\Qualified\InterfaceName::class => Fully\Qualified\ClassName::class,
Helper\ServerUrlHelper::class => Helper\ServerUrlHelper::class,
\App\Service\CiNodeService::class => \App\Service\CiNodeService::class,
],
// Use 'factories' for services provided by callbacks/factory classes.
'factories' => [
@@ -23,6 +24,7 @@ return [
'doctrine.entity_manager.orm_default' => \ContainerInteropDoctrine\EntityManagerFactory::class,
'doctrine.hydrator' => \App\Hydrator\DoctrineObjectFactory::class,
\App\Service\CiConfigService::class => \App\Service\CiConfigServiceFactory::class,
\App\Service\CiExecutorService::class => \App\Service\CiExecutorServiceFactory::class,
],
],
];