From 4cb460f06ef7c50e976069513e56d5699fe803a8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 29 Jan 2018 08:52:43 +0100 Subject: Update to 2.0.0 rename to php-phpunit-php-invoker2 raise dependency on PHP 7.1 move to PSR-0 tree (/usr/share/php/SebastianBergmann/Invoker) switch to phpunit6 switch to fedora/autoloader --- composer.json | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 8f80034..46b6ef3 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "phpunit/php-invoker", - "description": "Utility class for invoking callables with a timeout.", + "description": "Invoke callables with a timeout", "type": "library", "keywords": [ "process" @@ -17,13 +17,17 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues" }, + "prefer-stable": true, + "config": { + "optimize-autoloader": true, + "sort-packages": true + }, "require": { - "php": ">=5.3.3", - "phpunit/php-timer": ">=1.0.6", + "php": "^7.1", "ext-pcntl": "*" }, "require-dev": { - "phpunit/phpunit": "~4" + "phpunit/phpunit": "^6.5" }, "autoload": { "classmap": [ @@ -34,6 +38,11 @@ "classmap": [ "tests/" ] + }, + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } } } -- cgit