forked from 10up/wpacceptance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 967 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "10up/wpacceptance",
"description": "Test code using acceptance tests and sharable, defined file and database snapshots.",
"keywords": ["wordpress", "testing", "acceptance tests"],
"license": ["MIT"],
"authors": [
{
"name": "Taylor Lovett",
"email": "taylor.lovett@10up.com"
}
],
"require": {
"symfony/console": "^3.3",
"10up/wpsnapshots": "~1.5",
"facebook/webdriver": "^1.6",
"docker-php/docker-php": "^2.0",
"phpunit/phpunit": "^7.5",
"php": ">=7.2"
},
"bin": [
"bin/wpacceptance"
],
"autoload": {
"files": [
"src/utils.php"
],
"psr-4": {
"WPAcceptance\\": "./src/classes"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/10up/wpsnapshots.git"
}
],
"scripts": {
"lint": [
"phpcs ."
],
"lint-fix": [
"phpcbf ."
]
},
"require-dev": {
"10up/phpcs-composer": "dev-master"
}
}