forked from giorgiosironi/phpunit-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 860 Bytes
/
composer.json
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
{
"name": "phpunit/phpunit-selenium",
"description": "Selenium Server integration for PHPUnit",
"type": "library",
"keywords": [
"xunit",
"testing",
"selenium"
],
"homepage": "http://www.phpunit.de/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sebastian Bergmann",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit-selenium/issues",
"irc": "irc://irc.freenode.net/phpunit"
},
"require": {
"php": ">=5.3.3",
"phpunit/phpunit": ">=3.7.0@stable",
"ext-curl": "*",
"ext-dom": "*"
},
"autoload": {
"classmap": [
"PHPUnit/"
]
},
"include-path": [
""
]
}