diff options
author | Mario Vavti <mario@mariovavti.com> | 2020-08-22 19:31:29 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2020-08-22 19:31:29 +0200 |
commit | 2c777acb25fd5355ec02dc74c428174df80310d0 (patch) | |
tree | 8b74931f1b6c72d885cb47a451b71a565c4187d9 /vendor/sabre/xml/composer.json | |
parent | 49df57df45f82e2e0f1b10f2508f61b78d6d3ac0 (diff) | |
download | volse-hubzilla-2c777acb25fd5355ec02dc74c428174df80310d0.tar.gz volse-hubzilla-2c777acb25fd5355ec02dc74c428174df80310d0.tar.bz2 volse-hubzilla-2c777acb25fd5355ec02dc74c428174df80310d0.zip |
composer update sabre libs
Diffstat (limited to 'vendor/sabre/xml/composer.json')
-rw-r--r-- | vendor/sabre/xml/composer.json | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/vendor/sabre/xml/composer.json b/vendor/sabre/xml/composer.json index 2af0dd458..40abe149b 100644 --- a/vendor/sabre/xml/composer.json +++ b/vendor/sabre/xml/composer.json @@ -45,9 +45,23 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "~2.16.1", - "phpunit/phpunit" : "^7 || ^8" + "phpstan/phpstan": "^0.12", + "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.0" }, - "config" : { - "bin-dir" : "bin/" + "scripts": { + "phpstan": [ + "phpstan analyse lib tests" + ], + "cs-fixer": [ + "php-cs-fixer fix" + ], + "phpunit": [ + "phpunit --configuration tests/phpunit.xml" + ], + "test": [ + "composer phpstan", + "composer cs-fixer", + "composer phpunit" + ] } } |