From e671b286df8083f3d2510196faa552864b8e5ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yunus=20Emre=20Deligo=CC=88z?= Date: Mon, 1 Jan 2024 18:25:35 +0300 Subject: [PATCH] Update composer.json and adjust plugins 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. --- composer.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index b182a81..9f6b321 100644 --- a/composer.json +++ b/composer.json @@ -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 }, @@ -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",