Skip to content

Commit

Permalink
ci: fix PHP MD script
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudLigny committed Aug 28, 2024
1 parent b3d4aa5 commit 53fb719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@
"code": ["@code:analyse", "@code:fix", "@code:style"],
"code:analyse": "phpstan analyse ./src/ --memory-limit=1G --level=2 --no-progress --error-format=raw",
"code:analyse:gh": "phpstan analyse ./src/ --memory-limit=1G --level=2 --no-progress --error-format=github",
"code:md": "phpmd src text codesize, naming, unusedcode",
"code:md:gh": "phpmd src github codesize, naming, unusedcode",
"code:md": "phpmd ./src text codesize,unusedcode,naming",
"code:md:gh": "phpmd ./src github codesize,unusedcode,naming",
"code:style": "phpcs ./src/ --standard=PSR12 -n",
"code:fix": "php-cs-fixer fix --allow-risky=yes --show-progress=none",
"test": "@test:integration",
Expand Down

0 comments on commit 53fb719

Please sign in to comment.