Skip to content

Commit

Permalink
Merge pull request #7 from szepeviktor/patch-2
Browse files Browse the repository at this point in the history
Directories deserve a slash
  • Loading branch information
RobDWaller authored Nov 11, 2019
2 parents 4fdc27d + 3bff459 commit 62743bb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@
},
"autoload": {
"psr-4": {
"PsrJwt\\": "src",
"Tests\\": "tests"
"PsrJwt\\": "src/",
"Tests\\": "tests/"
}
},
"scripts" : {
"pipeline": [
"vendor/bin/phpcs --standard=psr12 src tests",
"vendor/bin/phpstan analyse -l 7 src tests",
"vendor/bin/phpmd src text ruleset.xml",
"vendor/bin/phpcs --standard=psr12 src/ tests/",
"vendor/bin/phpstan analyse -l 7 src/ tests/",
"vendor/bin/phpmd src/ text ruleset.xml",
"vendor/bin/phpunit --coverage-clover=coverage.xml",
"vendor/bin/infection -s --min-msi=90",
"vendor/bin/phpcpd --min-lines=2 --min-tokens=35 src",
"vendor/bin/phploc src"
"vendor/bin/phpcpd --min-lines=2 --min-tokens=35 src/",
"vendor/bin/phploc src/"
]
}
}

0 comments on commit 62743bb

Please sign in to comment.