From 5a5088eb342e4876cb28472ba1fc3f1da7a14852 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 30 Oct 2015 20:48:00 +0000 Subject: [PATCH] Add docs about wildcard support --- doc/04-schema.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/04-schema.md b/doc/04-schema.md index 09c309912..fccdb91a2 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -558,7 +558,9 @@ If you want to exclude some files or folders from the classmap you can use the ' This might be useful to exclude test classes in your live environment, for example, as those will be skipped from the classmap even when building an optimized autoloader. -The classmap generator will ignore all files in the paths configured here. +The classmap generator will ignore all files in the paths configured here. The paths are absolute from the package +root directory (i.e. composer.json location), and support `*` to match anything but a slash, and `**` to +match anything. `**` is implicitly added to the end of the paths. Example: