mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-16 02:11:05 +01:00
115de64e5b
Thanks to the BC compatibility, almost nothing have to be changed. All changes are related to new bundle version of: - SensioFrameworkExtraBundle - DoctrineFixturesBundle
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
services:
|
|
# see https://github.com/symfony/symfony/issues/24543
|
|
fos_user.user_manager.test:
|
|
alias: fos_user.user_manager
|
|
public: true
|
|
|
|
fos_user.security.login_manager.test:
|
|
alias: fos_user.security.login_manager
|
|
public: true
|
|
|
|
wallabag_core.entry_repository.test:
|
|
alias: wallabag_core.entry_repository
|
|
public: true
|
|
|
|
wallabag_user.user_repository.test:
|
|
alias: wallabag_user.user_repository
|
|
public: true
|
|
|
|
filesystem_cache:
|
|
class: Doctrine\Common\Cache\FilesystemCache
|
|
arguments:
|
|
- "%kernel.cache_dir%/doctrine/metadata"
|
|
|
|
# fixtures
|
|
Wallabag\AnnotationBundle\DataFixtures\ORM\:
|
|
resource: '../../src/Wallabag/AnnotationBundle/DataFixtures/ORM/*'
|
|
tags: ['doctrine.fixture.orm']
|
|
autowire: true
|
|
|
|
Wallabag\CoreBundle\DataFixtures\ORM\:
|
|
resource: '../../src/Wallabag/CoreBundle/DataFixtures/ORM/*'
|
|
tags: ['doctrine.fixture.orm']
|
|
autowire: true
|
|
|
|
Wallabag\UserBundle\DataFixtures\ORM\:
|
|
resource: '../../src/Wallabag/UserBundle/DataFixtures/ORM/*'
|
|
tags: ['doctrine.fixture.orm']
|
|
autowire: true
|