|
1 | 1 | imports: |
2 | | - - { resource: 'services/*.yml' } |
| 2 | + - { resource: 'services/*.yml' } |
3 | 3 |
|
4 | 4 | services: |
5 | | - _defaults: |
6 | | - autowire: true |
7 | | - autoconfigure: true |
8 | | - public: false |
9 | | - |
10 | | - PhpList\Core\Core\ConfigProvider: |
11 | | - arguments: |
12 | | - $config: '%app.config%' |
13 | | - |
14 | | - PhpList\Core\Core\ApplicationStructure: |
15 | | - public: true |
16 | | - |
17 | | - PhpList\Core\Security\Authentication: |
18 | | - public: true |
19 | | - |
20 | | - PhpList\Core\Security\HashGenerator: |
21 | | - public: true |
22 | | - |
23 | | - PhpList\Core\Routing\ExtraLoader: |
24 | | - tags: [routing.loader] |
25 | | - |
26 | | - PhpList\Core\Domain\Common\Repository\AbstractRepository: |
27 | | - abstract: true |
28 | | - autowire: true |
29 | | - autoconfigure: false |
30 | | - public: true |
31 | | - factory: ['@doctrine.orm.entity_manager', getRepository] |
32 | | - |
33 | | - # controllers are imported separately to make sure they're public |
34 | | - # and have a tag that allows actions to type-hint services |
35 | | - PhpList\Core\EmptyStartPageBundle\Controller\: |
36 | | - resource: '../src/EmptyStartPageBundle/Controller' |
37 | | - public: true |
38 | | - tags: [controller.service_arguments] |
39 | | - |
40 | | - doctrine.orm.metadata.annotation_reader: |
41 | | - alias: doctrine.annotation_reader |
42 | | - |
43 | | - doctrine.annotation_reader: |
44 | | - class: Doctrine\Common\Annotations\AnnotationReader |
45 | | - autowire: true |
46 | | - |
47 | | - doctrine.orm.default_annotation_metadata_driver: |
48 | | - class: Doctrine\ORM\Mapping\Driver\AnnotationDriver |
49 | | - arguments: |
50 | | - - '@annotation_reader' |
51 | | - - '%kernel.project_dir%/src/Domain/Model/' |
| 5 | + _defaults: |
| 6 | + autowire: true |
| 7 | + autoconfigure: true |
| 8 | + public: false |
| 9 | + |
| 10 | + PhpList\Core\Core\ConfigProvider: |
| 11 | + arguments: |
| 12 | + $config: '%app.config%' |
| 13 | + |
| 14 | + PhpList\Core\Core\ApplicationStructure: |
| 15 | + public: true |
| 16 | + |
| 17 | + PhpList\Core\Security\Authentication: |
| 18 | + public: true |
| 19 | + |
| 20 | + PhpList\Core\Security\HashGenerator: |
| 21 | + public: true |
| 22 | + |
| 23 | + PhpList\Core\Routing\ExtraLoader: |
| 24 | + tags: [routing.loader] |
| 25 | + |
| 26 | + PhpList\Core\Domain\Common\Repository\AbstractRepository: |
| 27 | + abstract: true |
| 28 | + autowire: true |
| 29 | + autoconfigure: false |
| 30 | + public: true |
| 31 | + factory: ['@doctrine.orm.entity_manager', getRepository] |
| 32 | + |
| 33 | + # controllers are imported separately to make sure they're public |
| 34 | + # and have a tag that allows actions to type-hint services |
| 35 | + PhpList\Core\EmptyStartPageBundle\Controller\: |
| 36 | + resource: '../src/EmptyStartPageBundle/Controller' |
| 37 | + public: true |
| 38 | + tags: [controller.service_arguments] |
| 39 | + |
| 40 | + doctrine.orm.metadata.annotation_reader: |
| 41 | + alias: doctrine.annotation_reader |
| 42 | + |
| 43 | + doctrine.annotation_reader: |
| 44 | + class: Doctrine\Common\Annotations\AnnotationReader |
| 45 | + autowire: true |
| 46 | + |
| 47 | + doctrine.orm.default_annotation_metadata_driver: |
| 48 | + class: Doctrine\ORM\Mapping\Driver\AnnotationDriver |
| 49 | + arguments: |
| 50 | + - '@annotation_reader' |
| 51 | + - '%kernel.project_dir%/src/Domain/Model/' |
0 commit comments