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
|
{
"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": "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": ">=5.6",
"phpunit/phpunit": "~5.0",
"sebastian/comparator": "~1.0",
"ext-curl": "*",
"ext-dom": "*"
},
"require-dev": {
"phing/phing": "2.*"
},
"autoload": {
"classmap": [
"PHPUnit/"
]
},
"include-path": [
""
]
}
|