forked from 10up/wpacceptance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.17 KB
/
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
49
50
51
52
53
54
{
"name": "10up/wpacceptance",
"description": "Test code using acceptance tests and sharable, defined file and database snapshots.",
"keywords": ["wordpress", "testing", "acceptance tests"],
"minimum-stability": "dev",
"license": ["MIT"],
"authors": [
{
"name": "Taylor Lovett",
"email": "[email protected]"
}
],
"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 --runtime-set testVersion 7.2- ."
],
"lint-fix": [
"phpcbf --runtime-set testVersion 7.2- ."
],
"post-install-cmd": [
"npm install"
]
},
"require-dev": {
"10up/phpcs-composer": "dev-master"
},
"require": {
"docker-php/docker-php": "^2.0@dev",
"10up/wpsnapshots": "dev-master",
"symfony/console": "^4.1",
"phpunit/phpunit": "^7.5",
"php": ">=7.2",
"nesk/puphpeteer": "^1.4",
"10up/wpinstructions": "dev-master",
"jane-php/open-api-runtime": "4.2.0"
}
}