Skip to content

Commit

Permalink
Add missing parallel-lint depdendency
Browse files Browse the repository at this point in the history
  • Loading branch information
schlessera committed Dec 12, 2023
1 parent d250297 commit a1e1556
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"malukenho/docheader": "^0.1.5",
"mikey179/vfsstream": "^1.6",
"yoast/phpunit-polyfills": "^1",
"squizlabs/php_codesniffer": "^3.5"
"squizlabs/php_codesniffer": "^3.5",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"license": "MIT",
"authors": [
Expand All @@ -31,15 +32,15 @@
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"upload-coverage": "vendor/bin/coveralls -v --coverage_clover clover.xml",
"cs-check": "vendor/bin/phpcs --colors",
"cs-fix": "vendor/bin/phpcbf --colors",
"test": "vendor/bin/phpunit --colors",
"test-coverage": "vendor/bin/phpunit --colors --coverage-clover clover.xml",
"license-check": "vendor/bin/docheader --ansi check src/"
"check": [
"@cs-check",
"@test"
],
"upload-coverage": "vendor/bin/coveralls -v --coverage_clover clover.xml",
"cs-check": "vendor/bin/phpcs -ps --colors",
"cs-fix": "vendor/bin/phpcbf -ps --colors",
"test": "vendor/bin/phpunit --colors",
"test-coverage": "vendor/bin/phpunit --colors --coverage-clover clover.xml",
"license-check": "vendor/bin/docheader --ansi check src/"
}
}

0 comments on commit a1e1556

Please sign in to comment.