PHP Classes

File: config/services.yaml

Recommend this page to a friend!
  Classes of Manolo Salsas   PHP Budget Application API   config/services.yaml   Download  
File: config/services.yaml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Budget Application API
API to manage records of budget requests
Author: By
Last change:
Date: 4 years ago
Size: 1,083 bytes
 

Contents

Class file image Download
# 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: 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. App\Service\: resource: '../src/Service/*' App\Validator\: resource: '../src/Validator/*' App\Repository\: resource: '../src/Repository/*' App\DataFixtures\: resource: '../src/DataFixtures/*' App\Controller\: resource: '../src/Controller' tags: ['controller.service_arguments'] App\EventListener\KernelResponseListener: tags: - { name: kernel.event_listener, event: kernel.response }