diff options
author | Remi Collet <remi@remirepo.net> | 2018-01-29 08:28:46 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-01-29 08:28:46 +0100 |
commit | 283a57dc802bb3d48488e0449c1dc5515dccbe25 (patch) | |
tree | 5b090240a41e4a41a7fe3d7ff8ffc527ed64df17 /composer.json |
duplicate v1 spec
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..8f80034 --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "phpunit/php-invoker", + "description": "Utility class for invoking 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" + }, + "require": { + "php": ">=5.3.3", + "phpunit/php-timer": ">=1.0.6", + "ext-pcntl": "*" + }, + "require-dev": { + "phpunit/phpunit": "~4" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/" + ] + } +} + |