1
0
Fork 0

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.
```
pull/2942/head
Toni Uebernickel 2014-04-27 12:29:35 +02:00
parent eebffacd9f
commit 2c6195785d
1 changed files with 1 additions and 1 deletions

View File

@ -534,7 +534,7 @@ Example:
"psr-4": { "MyLibrary\\": "src/" } "psr-4": { "MyLibrary\\": "src/" }
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "MyLibrary\\Tests": "tests/" } "psr-4": { "MyLibrary\\Tests\\": "tests/" }
} }
} }