Skip to content

Commit

Permalink
Update composer.json and adjust plugins
Browse files Browse the repository at this point in the history
Rearranged the order of plugins and removed an unnecessary command from the composer.json file. This change improves the sort order of enabled plugins and removes a redundant linting command for better simplicity and maintainability.
  • Loading branch information
deligoez committed Jan 1, 2024
1 parent cfdae90 commit e671b28
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true
"pestphp/pest-plugin": true,
"phonyland/dev-tools": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
Expand All @@ -45,11 +46,9 @@
"coverage": "vendor/bin/pest --coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"coveragep": "vendor/bin/pest --parallel --coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"infection": "vendor/bin/infection --test-framework=pest --show-mutations --threads=max --min-msi=100 --min-covered-msi=100 --ansi",
"lint": "@pint",
"lintc": "vendor/bin/pint && (git diff-index --quiet HEAD || (git add . && git commit -m 'chore: Fix styling'))",
"pest": "vendor/bin/pest --colors=always --order-by=random --configuration=phpunit.xml.dist",
"phpstan": "vendor/bin/phpstan analyse --configuration=phpstan.neon.dist",
"pint": "vendor/bin/pint --config=vendor/phonyland/dev-tools/src/pint.json",
"profile": "vendor/bin/pest --profile --colors=always --order-by=random --configuration=phpunit.xml.dist",
"test": "@pest",
"testp": "vendor/bin/pest --parallel --colors=always --order-by=random --configuration=phpunit.xml.dist",
Expand Down

0 comments on commit e671b28

Please sign in to comment.