Skip to content

Commit 8bf2895

Browse files
committed
Updated composer.json to PSR-4 autoloader.
The PSR-0 format has been deprecated in favor of PSR-4. For details, see: * http://www.php-fig.org/psr/psr-0/ * http://www.php-fig.org/psr/psr-4/ * php-fig/fig-standards@61f2d259
1 parent c93a78f commit 8bf2895

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
"files" : [
2727
"Interfaces.php"
2828
],
29-
"psr-0": {
30-
"ValueFormatters\\": "src",
31-
"ValueParsers\\": "src",
32-
"ValueValidators\\": "src"
29+
"psr-4": {
30+
"ValueFormatters\\": "src/ValueFormatters/",
31+
"ValueParsers\\": "src/ValueParsers/",
32+
"ValueValidators\\": "src/ValueValidators/"
3333
},
3434
"classmap": [
3535
"tests/ValueFormatters/ValueFormatterTestBase.php"

0 commit comments

Comments
 (0)