summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-01-27 08:39:12 +0100
committerRemi Collet <remi@remirepo.net>2020-01-27 08:39:12 +0100
commit58c0bc2d7a8b221a0ad28d7a47b95cf5a64e6fc9 (patch)
tree743601a961766464e2871f2e2e61c07f5d4468eb /composer.json
parent529a4aa76afea16c9138bba22d604b5eed3f21f3 (diff)
update to 1.2.9
switch to phpunit8
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json23
1 files changed, 14 insertions, 9 deletions
diff --git a/composer.json b/composer.json
index a0eed1e..12d180d 100644
--- a/composer.json
+++ b/composer.json
@@ -5,7 +5,7 @@
"type": "library",
"readme": "https://github.com/williamdes/mariadb-mysql-kbs/blob/master/README.md",
"license": "MPL-2.0",
- "version": "1.2.8",
+ "version": "1.2.9",
"keywords": [
"mariadb",
"mysql",
@@ -32,7 +32,7 @@
],
"scripts": {
"build": "php src/merge.php",
- "test": "phpunit --testdox --configuration ./test/phpunit.xml",
+ "test": "phpunit",
"phpstan": "phpstan analyse src test --configuration=phpstan.neon --level=max --memory-limit=100M",
"phpcs": "phpcs --standard=phpcs.xml --no-cache --colors -p -n",
"phpcbf": "phpcbf --standard=phpcs.xml"
@@ -41,11 +41,10 @@
"php": "^7.1"
},
"require-dev": {
- "phpunit/phpunit": "^7.0 || ^8.0",
- "phpstan/phpstan": "^0.11.3",
- "slevomat/coding-standard": "^5.0",
+ "phpunit/phpunit": "^7 || ^8",
+ "phpstan/phpstan": "^0.12",
+ "slevomat/coding-standard": "^6.0",
"squizlabs/php_codesniffer": "^3.3",
- "php-school/cli-menu": "^3.0",
"swaggest/json-schema": "^0.12.9"
},
"archive": {
@@ -63,16 +62,20 @@
"/CODEOWNERS",
"/williamdes-mariadb-mysql-kbs-*.tar",
"/docs",
+ "/target",
"/package.json",
"/package-lock.json",
"/.prettierignore",
"/.gitignore",
"/phpcs.xml",
+ "/phpunit.xml",
+ "/.gitattributes",
"/phpstan.neon",
- "/.travis.yml",
+ "/.github",
"/dist/merged-raw.md",
"/.jshintignore",
- "/.phpunit.result.cache"
+ "/.phpunit.result.cache",
+ "/schemas"
]
},
"autoload": {
@@ -85,5 +88,7 @@
"Williamdes\\MariaDBMySQLKBS\\Test\\": "test/"
}
},
- "non-feature-branches": ["update/*"]
+ "non-feature-branches": [
+ "update/*"
+ ]
}