2018-09-01 22:18:13 +02:00
|
|
|
# This file is the entry point to configure your own services.
|
|
|
|
# Files in the packages/ subdirectory configure your dependencies.
|
|
|
|
|
|
|
|
# Put parameters here that don't need to change on each machine where the app is deployed
|
|
|
|
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
|
|
|
|
parameters:
|
|
|
|
locale: 'en'
|
|
|
|
services:
|
|
|
|
# default configuration for services in *this* file
|
|
|
|
_defaults:
|
|
|
|
autowire: true # Automatically injects dependencies in your services.
|
|
|
|
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
|
|
|
|
public: false # Allows optimizing the container by removing unused services; this also means
|
|
|
|
# fetching services directly from the container via $container->get() won't work.
|
|
|
|
# The best practice is to be explicit about your dependencies anyway.
|
2018-09-06 09:44:29 +02:00
|
|
|
app.menu_builder:
|
2019-02-17 14:33:19 +01:00
|
|
|
class: Infinito\Menu\Menu
|
2018-09-06 09:44:29 +02:00
|
|
|
app.menu.usertopbar:
|
|
|
|
class: Knp\Menu\MenuItem
|
|
|
|
factory: ['@app.menu_builder', 'userTopbar']
|
|
|
|
tags:
|
|
|
|
- { name: knp_menu.menu, alias: userTopbar }
|
2018-09-01 22:18:13 +02:00
|
|
|
# makes classes in src/ available to be used as services
|
|
|
|
# this creates a service per class whose id is the fully-qualified class name
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\:
|
2018-09-01 22:18:13 +02:00
|
|
|
resource: '../src/*'
|
2019-02-16 08:40:42 +01:00
|
|
|
exclude: '../src/{DependencyInjection,Entity,Migrations,Tests,Exception,Kernel.php}'
|
2018-09-01 22:18:13 +02:00
|
|
|
# controllers are imported separately to make sure services can be injected
|
|
|
|
# as action arguments even if you don't extend any base controller class
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Controller\:
|
2018-09-01 22:18:13 +02:00
|
|
|
resource: '../src/Controller'
|
|
|
|
tags: ['controller.service_arguments']
|
|
|
|
|
|
|
|
# add more service definitions when explicit configuration is needed
|
|
|
|
# please note that last definitions always *replace* previous ones
|
2019-02-15 22:55:11 +01:00
|
|
|
|
2019-02-18 22:10:28 +01:00
|
|
|
# Map Interfaces to concrete classes
|
|
|
|
Infinito\Domain\TemplateManagement\TemplateNameServiceInterface: "@Infinito\\Domain\\TemplateManagement\\TemplateNameService"
|
|
|
|
|
2019-02-15 22:55:11 +01:00
|
|
|
# Needed for integration tests
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\RequestManagement\Entity\RequestedEntityService:
|
2019-02-16 08:40:42 +01:00
|
|
|
public: true
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\RequestManagement\Right\RequestedRightService:
|
2019-02-16 08:40:42 +01:00
|
|
|
public: true
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\UserManagement\UserSourceDirectorService:
|
2019-02-16 08:40:42 +01:00
|
|
|
public: true
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\RequestManagement\User\RequestedUserService:
|
2019-02-16 08:40:42 +01:00
|
|
|
public: true
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\RequestManagement\Action\RequestedActionService:
|
2019-02-16 08:50:46 +01:00
|
|
|
public: true
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\FormManagement\RequestedActionFormBuilderService:
|
2019-02-16 09:19:49 +01:00
|
|
|
public: true
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\SecureManagement\SecureRequestedRightCheckerService:
|
2019-02-16 10:27:28 +01:00
|
|
|
public: true
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\ActionManagement\ActionService:
|
2019-02-16 10:47:41 +01:00
|
|
|
public: true
|
2019-02-17 14:33:19 +01:00
|
|
|
Infinito\Domain\ActionManagement\ActionHandlerService:
|
2019-02-16 10:47:41 +01:00
|
|
|
public: true
|
|
|
|
|