-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
56 lines (56 loc) · 1.19 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
55
56
{
"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": "https://mikehansen.me/"
},
{
"name": "Micah Wood",
"homepage": "https://wpscholar.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://newfold-labs.github.io/satis/"
}
],
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"php": "8.1",
"phpunit/phpunit": "^9.6",
"wp-phpunit/wp-phpunit": ">=6.7.1",
"newfold-labs/wp-php-standards": "^1.2",
"yoast/phpunit-polyfills": "^3.1"
},
"scripts": {
"test": [
"vendor/bin/phpunit -c phpunit.xml --verbose"
],
"lint": [
"vendor/bin/phpcs endurance-page-cache.php --standard=Newfold"
],
"fix": [
"vendor/bin/phpcbf endurance-page-cache.php --standard=Newfold"
]
}
}