summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 97ff7e70c1c1ed915e1cd61ca5a5c640f375cead (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
    "name": "phpunit/phpunit-selenium",
    "description": "Selenium Server integration for PHPUnit",
    "type": "library",
    "keywords": [
        "xunit",
        "phpunit",
        "testing",
        "selenium"
    ],
    "homepage": "http://www.phpunit.de/",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Giorgio Sironi",
            "email": "info@giorgiosironi.com",
            "role": "developer"
        },
        {
            "name": "Ivan Kurnosov",
            "email": "zerkms@zerkms.com",
            "role": "developer"
        },
        {
            "name": "Paul Briton",
            "role": "developer"
        },
        {
            "name": "Patrik Štrba",
            "role": "developer"
        },
        {
            "name": "Petr Kotek",
            "role": "developer"
        },
        {
            "name": "Sebastian Bergmann",
            "email": "sb@sebastian-bergmann.de",
            "role": "original developer"
        }
    ],
    "support": {
        "issues": "https://github.com/sebastianbergmann/phpunit-selenium/issues",
        "irc": "irc://irc.freenode.net/phpunit"
    },
    "require": {
        "php": ">=7.1",
        "ext-curl": "*",
        "phpunit/phpunit": ">=7.0,<8.0"
    },
    "require-dev": {
       "phing/phing": "2.*"
    },
    "autoload": {
        "classmap": [
            "PHPUnit/"
        ]
    },
    "include-path": [
        ""
    ]
}