Created
March 13, 2014 15:22
-
-
Save chanakasan/9530489 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config.yml | |
fos_rest: | |
format_listener: | |
rules: | |
- { path: ^/, priorities: [ json, xml, html ], fallback_format: ~, prefer_extension: false } | |
view: | |
view_response_listener: force | |
sensio_framework_extra: | |
view: { annotations: false } | |
router: { annotations: true } | |
# routing.yml | |
products: | |
type: rest | |
resource: Acme\StoreBundle\Controller\RestController | |
defaults: {_format: json} | |
prefix: /api |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment