We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
.phpqa.yml
phpqa: tools: - phpmetrics extensions: - php - inc
[Edge\QA\Task\ParallelExec] "/phpqa/vendor/bin/phpmetrics" "./" --excluded-dirs="Reports|vendor" --extensions php,inc --offline --report-html "PHPQA/phpmetrics.html" --report-xml "PHPQA/phpmetrics.xml"
--extensions php,inc change to --extensions "php|inc" can fix this problem.
--extensions php,inc
--extensions "php|inc"
The text was updated successfully, but these errors were encountered:
extensions: ["php|inc"]
Sorry, something went wrong.
sh: inc: not found
because --extensions php|inc command must be change to --extensions "php|inc"
--extensions php|inc
and when I used extensions: ["php|inc"], parallel-lint, pdepend will show the same error sh: inc: not found.
cc5855b
No branches or pull requests
.phpqa.yml
--extensions php,inc
change to--extensions "php|inc"
can fix this problem.The text was updated successfully, but these errors were encountered: