Skip to content

Commit

Permalink
Fixing namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Mar 13, 2021
1 parent be71f92 commit 6495bf6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 28 deletions.
3 changes: 0 additions & 3 deletions Module.php

This file was deleted.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
],
"extra": {
"laminas": {
"module": "ApiSkeletons\\DoctrineHydrationModule"
"module": "ApiSkeletons\\DoctrineORMHydrationModule"
}
},
"require": {
Expand Down
25 changes: 1 addition & 24 deletions config/module.config.php
Original file line number Diff line number Diff line change
@@ -1,31 +1,8 @@
<?php
return array(
'service_manager' => array(
'invokables' => array(
'DoctrineHydrationModule\Strategy\ODM\MongoDB\DateTimeField' => 'Phpro\DoctrineHydrationModule\Hydrator\ODM\MongoDB\Strategy\DateTimeField',
'DoctrineHydrationModule\Strategy\ODM\MongoDB\DefaultRelation' => 'Phpro\DoctrineHydrationModule\Hydrator\ODM\MongoDB\Strategy\DefaultRelation',
'DoctrineHydrationModule\Strategy\ODM\MongoDB\EmbeddedCollection' => 'Phpro\DoctrineHydrationModule\Hydrator\ODM\MongoDB\Strategy\EmbeddedCollection',
'DoctrineHydrationModule\Strategy\ODM\MongoDB\EmbeddedField' => 'Phpro\DoctrineHydrationModule\Hydrator\ODM\MongoDB\Strategy\EmbeddedField',
'DoctrineHydrationModule\Strategy\ODM\MongoDB\ReferencedCollection' => 'Phpro\DoctrineHydrationModule\Hydrator\ODM\MongoDB\Strategy\ReferencedCollection',
'DoctrineHydrationModule\Strategy\ODM\MongoDB\ReferencedField' => 'Phpro\DoctrineHydrationModule\Hydrator\ODM\MongoDB\Strategy\ReferencedField',
'DoctrineHydrationModule\Strategy\ODM\MongoDB\EmbeddedReferenceCollection' => 'Phpro\DoctrineHydrationModule\Hydrator\ODM\MongoDB\Strategy\EmbeddedReferenceCollection',
'DoctrineHydrationModule\Strategy\ODM\MongoDB\EmbeddedReferenceField' => 'Phpro\DoctrineHydrationModule\Hydrator\ODM\MongoDB\Strategy\EmbeddedReferenceField',
),

'shared' => array(
'DoctrineHydrationModule\Strategy\ODM\MongoDB\DateTimeField' => false,
'DoctrineHydrationModule\Strategy\ODM\MongoDB\DefaultRelation' => false,
'DoctrineHydrationModule\Strategy\ODM\MongoDB\EmbeddedCollection' => false,
'DoctrineHydrationModule\Strategy\ODM\MongoDB\EmbeddedField' => false,
'DoctrineHydrationModule\Strategy\ODM\MongoDB\ReferencedCollection' => false,
'DoctrineHydrationModule\Strategy\ODM\MongoDB\ReferencedField' => false,
'DoctrineHydrationModule\Strategy\ODM\MongoDB\EmbeddedReferenceCollection' => false,
'DoctrineHydrationModule\Strategy\ODM\MongoDB\EmbeddedReferenceField' => false,
),
),
'hydrators' => array(
'abstract_factories' => array(
'Phpro\DoctrineHydrationModule\Service\DoctrineHydratorFactory',
'ApiSkeletons\DoctrineORMHydrationModule\Service\DoctrineHydratorFactory',
),
),
);

0 comments on commit 6495bf6

Please sign in to comment.