Browse Source

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.
```
Toni Uebernickel 11 years ago
parent
commit
2c6195785d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/04-schema.md

+ 1 - 1
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/" }
         }
     }