From b87810c7b8f59eee653083b79a4b3095d8282382 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 7 Dec 2022 09:18:29 +0100 Subject: update to 1.2.14 --- composer.json | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 094063d..00bcfef 100644 --- a/composer.json +++ b/composer.json @@ -40,11 +40,11 @@ } ], "scripts": { - "build": "./src/merge.php", - "test": "./vendor/bin/phpunit", - "phpstan": "./vendor/bin/phpstan", - "phpcs": "./vendor/bin/phpcs --no-cache", - "phpcbf": "./vendor/bin/phpcbf" + "build": "@php ./src/merge.php", + "test": "@php phpunit", + "phpstan": "@php phpstan", + "phpcs": "@php phpcs", + "phpcbf": "@php phpcbf" }, "require": { "php": "^7.1 || ^8.0" @@ -52,7 +52,7 @@ "require-dev": { "phpunit/phpunit": "^7 || ^8 || ^9", "phpstan/phpstan": "^1.2", - "wdes/coding-standard": "^3", + "wdes/coding-standard": "^3.2.1", "swaggest/json-schema": "^0.12.29" }, "autoload": { @@ -67,5 +67,16 @@ }, "non-feature-branches": [ "update/*" - ] + ], + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + }, + "archive": { + "exclude": [ + "/test", + "/phpunit.xml" + ] + } } -- cgit