diff options
Diffstat (limited to 'app/config/services_test.yml')
-rw-r--r-- | app/config/services_test.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app/config/services_test.yml b/app/config/services_test.yml new file mode 100644 index 00000000..a300f75d --- /dev/null +++ b/app/config/services_test.yml | |||
@@ -0,0 +1,38 @@ | |||
1 | services: | ||
2 | # see https://github.com/symfony/symfony/issues/24543 | ||
3 | fos_user.user_manager.test: | ||
4 | alias: fos_user.user_manager | ||
5 | public: true | ||
6 | |||
7 | fos_user.security.login_manager.test: | ||
8 | alias: fos_user.security.login_manager | ||
9 | public: true | ||
10 | |||
11 | wallabag_core.entry_repository.test: | ||
12 | alias: wallabag_core.entry_repository | ||
13 | public: true | ||
14 | |||
15 | wallabag_user.user_repository.test: | ||
16 | alias: wallabag_user.user_repository | ||
17 | public: true | ||
18 | |||
19 | filesystem_cache: | ||
20 | class: Doctrine\Common\Cache\FilesystemCache | ||
21 | arguments: | ||
22 | - "%kernel.cache_dir%/doctrine/metadata" | ||
23 | |||
24 | # fixtures | ||
25 | Wallabag\AnnotationBundle\DataFixtures\ORM\: | ||
26 | resource: '../../src/Wallabag/AnnotationBundle/DataFixtures/ORM/*' | ||
27 | tags: ['doctrine.fixture.orm'] | ||
28 | autowire: true | ||
29 | |||
30 | Wallabag\CoreBundle\DataFixtures\ORM\: | ||
31 | resource: '../../src/Wallabag/CoreBundle/DataFixtures/ORM/*' | ||
32 | tags: ['doctrine.fixture.orm'] | ||
33 | autowire: true | ||
34 | |||
35 | Wallabag\UserBundle\DataFixtures\ORM\: | ||
36 | resource: '../../src/Wallabag/UserBundle/DataFixtures/ORM/*' | ||
37 | tags: ['doctrine.fixture.orm'] | ||
38 | autowire: true | ||