mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-14 16:46:30 +03:00
In Symfony 4 The `nelmio_api_doc.routes` config option is deprecated. Please use `nelmio_api_doc.areas` instead (just replace `routes` by `areas` in your config)
10 lines
287 B
YAML
10 lines
287 B
YAML
nelmio_api_doc:
|
|
documentation:
|
|
info:
|
|
title: My App
|
|
description: This is an awesome app!
|
|
version: 1.0.0
|
|
areas: # to filter documented areas
|
|
path_patterns:
|
|
- ^/api(?!/doc$) # Accepts routes under /api except /api/doc
|