From 43d3e2b7d30f1f22ce7a23f2818a67ab3aa69f69 Mon Sep 17 00:00:00 2001 From: mscherer Date: Sun, 3 Jan 2021 04:52:38 +0100 Subject: [PATCH] test setup --- .editorconfig | 4 +--- composer.json | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index 23c1f9d..745f2bc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,5 @@ ; This file is for unifying the coding style for different editors and IDEs. -; More information at http://editorconfig.org - -root = false +; More information at https://editorconfig.org [*] indent_style = tab diff --git a/composer.json b/composer.json index 74ff156..7bdfcdb 100644 --- a/composer.json +++ b/composer.json @@ -45,7 +45,7 @@ }, "scripts": { "test": "php phpunit.phar", - "test-setup": "[ ! -f phpunit.phar ] && wget https://phar.phpunit.de/phpunit-6.5.13.phar && mv phpunit-6.5.13.phar phpunit.phar || true", + "test-setup": "[ ! -f phpunit.phar ] && wget https://phar.phpunit.de/phpunit-8.5.13.phar && mv phpunit-8.5.13.phar phpunit.phar || true", "test-coverage" : "php phpunit.phar --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml", "stan": "phpstan analyse", "stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12 && mv composer.backup composer.json",