summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-01-29 08:52:43 +0100
committerRemi Collet <remi@remirepo.net>2018-01-29 08:52:43 +0100
commit4cb460f06ef7c50e976069513e56d5699fe803a8 (patch)
tree6184d1611a83ff111e435c76a3419c087d8ace45 /composer.json
parent283a57dc802bb3d48488e0449c1dc5515dccbe25 (diff)
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
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json17
1 files changed, 13 insertions, 4 deletions
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"
+ }
}
}