-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (51 loc) · 1.5 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (51 loc) · 1.5 KB
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
{
"name": "shift8/cdn",
"description": "WordPress plugin that integrates sites with Shift8 CDN geo-DNS service",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Shift8 Web",
"email": "info@shift8web.ca",
"homepage": "https://shift8web.ca"
}
],
"require": {
"php": ">=7.4",
"matthiasmullie/minify": "^1.3"
},
"require-dev": {
"brain/monkey": "^2.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^9.6",
"roave/security-advisories": "dev-latest",
"wp-coding-standards/wpcs": "^2.3",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"Shift8\\CDN\\": "inc/"
}
},
"autoload-dev": {
"psr-4": {
"Shift8\\CDN\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --testdox",
"test:unit": "phpunit --testsuite=unit --testdox",
"test:coverage": "phpunit --coverage-text --coverage-html=tests/coverage/html",
"test:coverage-summary": "phpunit --coverage-text | grep -A 3 'Code Coverage'",
"cs:check": "phpcs",
"cs:fix": "phpcbf"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
}
}