summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-02-07 10:37:14 +0100
committerRemi Collet <remi@remirepo.net>2020-02-07 10:37:14 +0100
commit1fbe76135c72453b14e60cab472fa64cc4eccff1 (patch)
tree4b7f2c3ffa06ab3bb3ebcc581b5accb8a04e147a /composer.json
duplicate v2
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json48
1 files changed, 48 insertions, 0 deletions
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"
+ }
+ }
+}
+