From 58c0bc2d7a8b221a0ad28d7a47b95cf5a64e6fc9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 27 Jan 2020 08:39:12 +0100 Subject: update to 1.2.9 switch to phpunit8 --- composer.json | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) (limited to 'composer.json') 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/*" + ] } -- cgit