File tree 4 files changed +0
-34
lines changed
4 files changed +0
-34
lines changed Original file line number Diff line number Diff line change 69
69
"laminas/laminas-servicemanager" : " ^3.10" ,
70
70
"mezzio/mezzio" : " ^3.3" ,
71
71
"mezzio/mezzio-laminasviewrenderer" : " ^2.3" ,
72
- "northwoods/container" : " ^3.0" ,
73
72
"php-coveralls/php-coveralls" : " ^2.4" ,
74
73
"phpstan/phpstan" : " ^1.6.7" ,
75
74
"phpstan/phpstan-webmozart-assert" : " ^1.0" ,
Original file line number Diff line number Diff line change 5
5
use ArrayObject ;
6
6
use Aura \Di \Container as AuraContainer ;
7
7
use Aura \Di \ContainerBuilder as AuraContainerBuilder ;
8
- use Auryn \Injector ;
9
8
use Doctrine \DBAL \Connection ;
10
9
use Doctrine \DBAL \Driver \PDO \MySql \Driver ;
11
10
use Doctrine \ORM \EntityManager ;
16
15
use Kahlan \Plugin \Double ;
17
16
use Laminas \ServiceManager \ServiceManager ;
18
17
use Mezzio \Template \TemplateRendererInterface ;
19
- use Northwoods \Container \InjectorContainer ;
20
18
use PDO ;
21
19
use Pimple \Container as PimpleContainer ;
22
20
use Pimple \Psr11 \Container as Psr11PimpleContainer ;
30
28
given ('mapCreateContainers ' , fn () : array => [
31
29
AuraContainer::class => (new AuraContainerBuilder ())->newInstance (),
32
30
SymfonyContainerBuilder::class => new SymfonyContainerBuilder (),
33
- InjectorContainer::class => new InjectorContainer (new Injector ()),
34
31
Psr11PimpleContainer::class => new Psr11PimpleContainer (new PimpleContainer ()),
35
32
]);
36
33
Original file line number Diff line number Diff line change 9
9
use Doctrine \ORM \EntityManager ;
10
10
use ErrorHeroModule \Handler \Logging ;
11
11
use ErrorHeroModule \Transformer \AuraService ;
12
- use ErrorHeroModule \Transformer \AurynService ;
13
12
use ErrorHeroModule \Transformer \Doctrine ;
14
13
use ErrorHeroModule \Transformer \PimpleService ;
15
14
use ErrorHeroModule \Transformer \SymfonyService ;
16
15
use Laminas \ServiceManager \ServiceManager ;
17
16
use Mezzio \Template \TemplateRendererInterface ;
18
- use Northwoods \Container \InjectorContainer ;
19
17
use Pimple \Psr11 \Container as Psr11PimpleContainer ;
20
18
use Psr \Container \ContainerInterface ;
21
19
use RuntimeException ;
@@ -32,7 +30,6 @@ class MezzioFactory
32
30
private const CONTAINERS_TRANSFORM = [
33
31
ContainerBuilder::class => SymfonyService::class,
34
32
AuraContainer::class => AuraService::class,
35
- InjectorContainer::class => AurynService::class,
36
33
Psr11PimpleContainer::class => PimpleService::class,
37
34
];
38
35
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments