Skip to content

Instantly share code, notes, and snippets.

@0GiS0
Last active January 29, 2019 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0GiS0/f3f95d9f6e87ffc4974e6a76856ee4d8 to your computer and use it in GitHub Desktop.
Save 0GiS0/f3f95d9f6e87ffc4974e6a76856ee4d8 to your computer and use it in GitHub Desktop.
#config/services.yaml
# 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'
redis.host: '%env(REDIS_HOST)%'
redis.port: '%env(REDIS_PORT)%'
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,Entity,Migrations,Tests,Kernel.php}'
# 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']
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones
cache.app:
class: Symfony\Component\Cache\Adapter\ChainAdapter
arguments:
$adapters: ['@app.cache.redis']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment