# 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' jotunheimr.version: 1.1.0-20191026 facebook.api: 320599508311862 facebook.api-secret: 18d4f48cdd274bccee2678e5eff3f557 facebook.version: 'v2.8' facebook.scope: 'public_profile,email,user_friends' mineseeker.websocket: 6450 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. # 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/{Entity,Migrations,Tests,Kernel.php,Periodic}' # 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 mineseeker.topic_sample_service: class: App\Topic\MineseekerTopic tags: - { name: gos_web_socket.topic } mineseeker.rpc_sample_service: class: App\Rpc\MineseekerRpc public: true tags: - { name: gos_web_socket.rpc } gos_web_socket_server.client_event.listener: class: App\EventListener\MineseekerClientEventListener tags: - { name: kernel.event_listener, event: 'gos_web_socket.client_connected', method: onClientConnect } - { name: kernel.event_listener, event: 'gos_web_socket.client_disconnected', method: onClientDisconnect } - { name: kernel.event_listener, event: 'gos_web_socket.client_error', method: onClientError } - { name: kernel.event_listener, event: 'gos_web_socket.server_launched', method: onServerStart } - { name: kernel.event_listener, event: 'gos_web_socket.client_rejected', method: onClientRejected }