From 1fbe76135c72453b14e60cab472fa64cc4eccff1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 7 Feb 2020 10:37:14 +0100 Subject: duplicate v2 --- composer.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..46b6ef3 --- /dev/null +++ b/composer.json @@ -0,0 +1,48 @@ +{ + "name": "phpunit/php-invoker", + "description": "Invoke callables with a timeout", + "type": "library", + "keywords": [ + "process" + ], + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues" + }, + "prefer-stable": true, + "config": { + "optimize-autoloader": true, + "sort-packages": true + }, + "require": { + "php": "^7.1", + "ext-pcntl": "*" + }, + "require-dev": { + "phpunit/phpunit": "^6.5" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + } +} + -- cgit