-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 897 Bytes
/
composer.json
File metadata and controls
36 lines (35 loc) · 897 Bytes
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
{
"name": "devchid/wpselenium",
"description": "WPSelenium is a library that allows you to quickly get up and running testing your site with selenium and phpunit.",
"type": "library",
"keywords": [
"selenium",
"phpunit",
"webdrivers",
"composer",
"facebook",
"php"
],
"homepage": "http://wpselenium.devchid.com/",
"license": "MIT",
"authors": [
{
"name": "Chido Warambwa",
"email": "chido@batanasoftware.com"
}
],
"require": {
"php" : "^7.1",
"phpunit/phpunit": "7.4.5",
"facebook/webdriver": "^1.0",
"ulrichsg/getopt-php": "^3.2",
"limedeck/phpunit-detailed-printer": "4.2.0",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"WPSelenium\\": "src/"
}
},
"bin": ["wpselenium"]
}