From 2c6195785dd2f10abcf0ebaaf9e2564b3e705520 Mon Sep 17 00:00:00 2001 From: Toni Uebernickel Date: Sun, 27 Apr 2014 12:29:35 +0200 Subject: [PATCH] fix autoload-dev example for PSR-4 The example leads to the following error. ``` [InvalidArgumentException] A non-empty PSR-4 prefix must end with a namespace separator. ``` --- doc/04-schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/04-schema.md b/doc/04-schema.md index 071b3bd9f..906075372 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -534,7 +534,7 @@ Example: "psr-4": { "MyLibrary\\": "src/" } }, "autoload-dev": { - "psr-4": { "MyLibrary\\Tests": "tests/" } + "psr-4": { "MyLibrary\\Tests\\": "tests/" } } }