Skip to content

Commit 62743bb

Browse files
authored
Merge pull request #7 from szepeviktor/patch-2
Directories deserve a slash
2 parents 4fdc27d + 3bff459 commit 62743bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@
3030
},
3131
"autoload": {
3232
"psr-4": {
33-
"PsrJwt\\": "src",
34-
"Tests\\": "tests"
33+
"PsrJwt\\": "src/",
34+
"Tests\\": "tests/"
3535
}
3636
},
3737
"scripts" : {
3838
"pipeline": [
39-
"vendor/bin/phpcs --standard=psr12 src tests",
40-
"vendor/bin/phpstan analyse -l 7 src tests",
41-
"vendor/bin/phpmd src text ruleset.xml",
39+
"vendor/bin/phpcs --standard=psr12 src/ tests/",
40+
"vendor/bin/phpstan analyse -l 7 src/ tests/",
41+
"vendor/bin/phpmd src/ text ruleset.xml",
4242
"vendor/bin/phpunit --coverage-clover=coverage.xml",
4343
"vendor/bin/infection -s --min-msi=90",
44-
"vendor/bin/phpcpd --min-lines=2 --min-tokens=35 src",
45-
"vendor/bin/phploc src"
44+
"vendor/bin/phpcpd --min-lines=2 --min-tokens=35 src/",
45+
"vendor/bin/phploc src/"
4646
]
4747
}
4848
}

0 commit comments

Comments
 (0)