summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
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"
+ }
}
}