Skip to content

Commit c3e1674

Browse files
author
Norbert Orzechowicz
committed
Merge pull request #67 from jakzal/psr-4
Use PSR-4 for autoloading
2 parents c097e36 + 99da898 commit c3e1674

File tree

89 files changed

+8
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+8
-3
lines changed

composer.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "coduo/php-matcher",
33
"type": "library",
4+
"description": "PHP Matcher enables you to match values with patterns",
45
"keywords": ["json", "matcher", "tests", "match"],
56
"license": "MIT",
67
"authors": [
@@ -26,9 +27,13 @@
2627
"phpunit/phpunit": "^4.8"
2728
},
2829
"autoload": {
29-
"psr-0": {
30-
"Coduo\\PHPMatcher": "src/",
31-
"Coduo\\PHPMatcher\\Tests": "tests/"
30+
"psr-4": {
31+
"Coduo\\PHPMatcher\\": "src/"
32+
}
33+
},
34+
"autoload-dev": {
35+
"psr-4": {
36+
"Coduo\\PHPMatcher\\Tests\\": "tests/"
3237
}
3338
},
3439
"config": {
File renamed without changes.
File renamed without changes.

src/Coduo/PHPMatcher/Exception/InvalidExpanderTypeException.php renamed to src/Exception/InvalidExpanderTypeException.php

File renamed without changes.
File renamed without changes.

src/Coduo/PHPMatcher/Exception/UnknownExpanderClassException.php renamed to src/Exception/UnknownExpanderClassException.php

File renamed without changes.

0 commit comments

Comments
 (0)