summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-12-07 09:18:29 +0100
committerRemi Collet <remi@php.net>2022-12-07 09:18:29 +0100
commitb87810c7b8f59eee653083b79a4b3095d8282382 (patch)
treea1961adebecb0edf0dfe4fcdf884e83eeb3efda8 /composer.json
parent0929d30a6ed395af33f35787e7f163cafd9501ba (diff)
update to 1.2.14HEADmaster
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json25
1 files changed, 18 insertions, 7 deletions
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"
+ ]
+ }
}