2018-04-04 16:25:25 +02:00
|
|
|
# Learn more about services, parameters and containers at
|
|
|
|
# https://symfony.com/doc/current/service_container.html
|
|
|
|
parameters:
|
|
|
|
#parameter_name: value
|
|
|
|
|
|
|
|
services:
|
2018-04-25 17:32:44 +02:00
|
|
|
em:
|
|
|
|
alias: doctrine.orm.entity_manager
|
2018-04-04 16:25:25 +02:00
|
|
|
# default configuration for services in *this* file
|
|
|
|
_defaults:
|
|
|
|
# automatically injects dependencies in your services
|
2018-05-24 11:57:53 +02:00
|
|
|
autowire: true
|
2018-04-04 16:25:25 +02:00
|
|
|
# automatically registers your services as commands, event subscribers, etc.
|
|
|
|
autoconfigure: true
|
|
|
|
# this means you cannot fetch services directly from the container via $container->get()
|
|
|
|
# if you need to do this, you can override this setting on individual services
|
|
|
|
public: false
|
|
|
|
|
|
|
|
# makes classes in src/AppBundle available to be used as services
|
|
|
|
# this creates a service per class whose id is the fully-qualified class name
|
|
|
|
AppBundle\:
|
|
|
|
resource: '../../src/AppBundle/*'
|
|
|
|
# you can exclude directories or files
|
|
|
|
# but if a service is unused, it's removed anyway
|
|
|
|
exclude: '../../src/AppBundle/{Entity,Repository,Tests}'
|
|
|
|
|
|
|
|
# controllers are imported separately to make sure they're public
|
|
|
|
# and have a tag that allows actions to type-hint services
|
|
|
|
AppBundle\Controller\:
|
|
|
|
resource: '../../src/AppBundle/Controller'
|
|
|
|
public: true
|
|
|
|
tags: ['controller.service_arguments']
|
|
|
|
|
|
|
|
# add more services, or override services that need manual wiring
|
|
|
|
# AppBundle\Service\ExampleService:
|
|
|
|
# arguments:
|
|
|
|
# $someArgument: 'some_value'
|
2018-04-25 12:33:58 +02:00
|
|
|
# OAUTH
|
2018-04-04 16:25:25 +02:00
|
|
|
my.oauth_aware.user_provider.service:
|
|
|
|
class: HWI\Bundle\OAuthBundle\Security\Core\User\FOSUBUserProvider
|
|
|
|
arguments:
|
|
|
|
- '@fos_user.user_manager'
|
2018-04-25 15:08:39 +02:00
|
|
|
- ['@fos_user.user_manager', twitter: twitter_id]
|
2018-04-25 17:32:44 +02:00
|
|
|
- 'doctrine.orm.default_entity_manager'
|
2018-04-25 12:33:58 +02:00
|
|
|
|
|
|
|
my.custom.user_provider:
|
2018-04-25 15:08:39 +02:00
|
|
|
class: AppBundle\Security\Core\User\MyFOSUBUserProvider
|
2018-04-25 17:32:44 +02:00
|
|
|
arguments:
|
|
|
|
- '@fos_user.user_manager'
|
|
|
|
- ['@fos_user.user_manager', twitter: twitter_id]
|
|
|
|
- '@doctrine.orm.default_entity_manager'
|
2018-05-24 11:57:53 +02:00
|
|
|
tk.owner.service:
|
|
|
|
autowire: false
|
|
|
|
class: AppBundle\Service\OwnerService
|
|
|
|
arguments:
|
|
|
|
- '@doctrine.orm.default_entity_manager'
|