|
- # 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:
- app.locales: ["fr"]
- app.default_locale: "fr"
- app.path_uploads: '/uploads'
- app.reminder.route_render_modal: 'sov_admin_reminder_render_modal'
- app.reminder.route_new: 'sov_admin_reminder_new'
-
- 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.
-
- # makes classes in src/ available to be used as services
- # this creates a service per class whose id is the fully-qualified class name
- App\:
- resource: '../src/'
- exclude:
- - '../src/DependencyInjection/'
- - '../src/Entity/'
- - '../src/Kernel.php'
- - '../src/Tests/'
-
- # controllers are imported separately to make sure services can be injected
- # as action arguments even if you don't extend any base controller class
- App\Controller\:
- resource: '../src/Controller/'
- tags: ['controller.service_arguments']
-
- carac.merchant.resolver:
- alias: Lc\CaracoleBundle\Resolver\MerchantResolver
- public: true
-
- Lc\CaracoleBundle\:
- resource: '../Lc/CaracoleBundle/'
- exclude:
- - '../Lc/CaracoleBundle/DependencyInjection/'
- - '../Lc/CaracoleBundle/Entity/'
- - '../Lc/CaracoleBundle/Kernel.php'
- - '../Lc/CaracoleBundle/Tests/'
-
- Lc\CaracoleBundle\Controller\:
- resource: '../Lc/CaracoleBundle/Controller/'
- tags: [ 'controller.service_arguments' ]
-
- # add more service definitions when explicit configuration is needed
- # please note that last definitions always *replace* previous ones
-
- # Definition
- #Lc\CaracoleBundle\Definition\MerchantSettingDefinition:
- # class: App\Definition\MerchantSettingDefinition
- #Lc\SovBundle\Definition\SiteSettingDefinition:
- # class: App\Definition\SiteSettingDefinition
-
- # Repository
- #Lc\SovBundle\Repository\Reminder\ReminderRepositoryInterface:
- # class: Lc\SovBundle\Repository\Reminder\ReminderRepository
- #Lc\SovBundle\Repository\File\FileRepositoryInterface:
- # class: Lc\SovBundle\Repository\File\FileRepository
- #Lc\SovBundle\Repository\Newsletter\NewsletterRepositoryInterface:
- # class: Lc\SovBundle\Repository\Newsletter\NewsletterRepository
- #Lc\SovBundle\Repository\Setting\SiteSettingRepositoryInterface:
- # class: Lc\SovBundle\Repository\Setting\SiteSettingRepository
- #Lc\SovBundle\Repository\Site\SiteRepositoryInterface:
- # class: Lc\SovBundle\Repository\Site\SiteRepository
- #Lc\SovBundle\Repository\Site\PageRepositoryInterface:
- # class: Lc\SovBundle\Repository\Site\PageRepository
- #Lc\SovBundle\Repository\Site\NewsRepositoryInterface:
- # class: Lc\SovBundle\Repository\Site\NewsRepository
- #Lc\SovBundle\Repository\Ticket\TicketRepositoryInterface:
- # class: Lc\SovBundle\Repository\Ticket\TicketRepository
- #Lc\SovBundle\Repository\Ticket\TicketMessageRepositoryInterface:
- # class: Lc\SovBundle\Repository\Ticket\TicketMessageRepository
- #Lc\SovBundle\Repository\User\GroupUserRepositoryInterface:
- # class: Lc\CaracoleBundle\Repository\User\GroupUserRepository
- #Lc\SovBundle\Repository\User\UserRepositoryInterface:
- # class: Lc\SovBundle\Repository\User\UserRepository
- #Lc\CaracoleBundle\Repository\Merchant\MerchantRepositoryInterface:
- # class: Lc\CaracoleBundle\Repository\Merchant\MerchantRepository
- #Lc\CaracoleBundle\Repository\User\UserMerchantRepositoryInterface:
- # class: Lc\CaracoleBundle\Repository\User\UserMerchantRepository
- #Lc\CaracoleBundle\Repository\User\VisitorRepositoryInterface:
- # class: Lc\CaracoleBundle\Repository\User\VisitorRepository
- #Lc\CaracoleBundle\Repository\Section\SectionRepositoryInterface:
- # class: Lc\CaracoleBundle\Repository\Section\SectionRepository
- #Lc\CaracoleBundle\Repository\PointSale\PointSaleRepositoryInterface:
- # class: Lc\CaracoleBundle\Repository\PointSale\PointSaleRepository
- #Lc\CaracoleBundle\Repository\Credit\CreditHistoryRepositoryInterface:
- # class: Lc\CaracoleBundle\Repository\Credit\CreditHistoryRepository
-
- # Factory
- #Lc\SovBundle\Factory\Reminder\ReminderFactoryInterface:
- # class: Lc\CaracoleBundle\Factory\Reminder\ReminderFactory
- #Lc\SovBundle\Factory\Ticket\TicketFactoryInterface:
- # class: Lc\CaracoleBundle\Factory\Ticket\TicketFactory
|