summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 8f80034eb23986c6bd14d21d16789d95b8e7ffdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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/"
        ]
    }
}