-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
54 lines (54 loc) · 1.1 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": "bluehost/endurance-page-cache",
"description": "",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Ian Belanger",
"homepage": "https://github.com/ianbelanger79"
},
{
"name": "George Jipa",
"email": "contact@georgejipa.com"
},
{
"name": "Mike Hansen",
"homepage": "http://mikehansen.me/"
},
{
"name": "Micah Wood",
"email": "micah@wpscholar.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://satis.wpteamhub.com"
}
],
"config": {
"platform": {
"php": "7.4.18"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"wp-phpunit/wp-phpunit": "*",
"bluehost/wp-php-standards": "^1.1"
},
"scripts": {
"lint": [
"vendor/bin/phpcs endurance-page-cache.php --standard=Bluehost"
],
"fix": [
"vendor/bin/phpcbf endurance-page-cache.php --standard=Bluehost"
]
},
"require": {
"yoast/phpunit-polyfills": "^1.0"
}
}