From 838959b2d90b01ca25f665c88806408081833c43 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 29 Jan 2018 08:28:03 +0100 Subject: composer.json --- .gitignore | 8 ++++++++ composer.json | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc9aa8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +clog +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm 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/" + ] + } +} + -- cgit