Config file of FOSRestBundle 2.3?

242 Views Asked by At

I'm looking for configuration's path of FOSRestBundle 2.3. I have Symfony 2.8.

I have checked app/config/config.yml but nothing about fos_rest :/

When I type PHP app/console config:debug fos_rest I got the configuration of this bundle.

Please help !

1

There are 1 best solutions below

1
Nabil Afraz On

I have current configuration for my bundle.

# FOSRest Configuration
fos_rest:
    body_listener: true
    format_listener:
        rules:
            - { path: '^/filemanager', priorities: ['html'], fallback_format: html, prefer_extension: false }
            - { path: '^/html', priorities: ['html'], fallback_format: html, prefer_extension: false }
            - { path: '^/', priorities: ['json'], fallback_format: json, prefer_extension: false }

param_fetcher_listener: true
view:
    view_response_listener: 'force'
    formats:
        json: true
exception:
    enabled: true