diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/composer.json b/composer.json index be10e25..3b93393 100644 --- a/composer.json +++ b/composer.json @@ -11,22 +11,33 @@ "email": "paul@annesley.cc", "homepage": "http://paul.annesley.cc/", "role": "Developer" + }, + { + "name": "Sam Mousa", + "email": "sam@mousa.nl", + "role": "Maintainer" } ], "require": { - "php": ">=5.3.0" + "php": ">=7.1.0", + "ext-mbstring": "*" }, "require-dev": { - "phpunit/phpunit": "~4.0" + "phpunit/phpunit": "^7", + "vimeo/psalm": "^2.0", + "phpdocumentor/phpdocumentor": "^2" }, "autoload": { "psr-4": { "Pheanstalk\\": "src/" } }, - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } + "scripts": { + "phpunit": "docker-compose run --rm phpunit", + "psalm": "@php vendor/bin/psalm --show-info=false src", + "test": [ + "@composer install", + "@phpunit" + ] } } |