diff options
author | Mirosław Sztorc <msztorc@users.noreply.github.com> | 2022-02-14 17:59:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 17:59:33 +0300 |
commit | 6ebe4849ff7448d5903914d2f8980af5c9fd8d34 (patch) | |
tree | b71ade3878ce4a31a01ac4b4a828d90926776d45 /composer.json | |
parent | 9442a6f4712ec80df799522b8aec2635dc0254a3 (diff) |
PHP 8.1 support (#94)V2.1.10
* php 8.1
* upgrading phpunit
* removing php7.2 support
* removing php7.2 from test matrix
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/composer.json b/composer.json index 6c2dd75..7ebd752 100644 --- a/composer.json +++ b/composer.json @@ -22,11 +22,16 @@ "email": "brucekwells@gmail.com" } ], + "scripts": { + "test": "vendor/bin/phpunit --colors=always", + "test-coverage": "vendor/bin/phpunit --coverage-html coverage" + + }, "require": { - "php": ">=7.2" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": ">=8.0" + "phpunit/phpunit": ">=9.0" }, "autoload": { "psr-4": { |