-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.38 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "futtta/autoptimize",
"description": "Optimizes your WordPress website, concatenating the CSS and JavaScript code, and compressing it.",
"type": "wordpress-plugin",
"homepage": "https://autoptimize.com/",
"keywords": [
"async",
"minify",
"optimize",
"pagespeed",
"performance"
],
"license": "GPL",
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://wordpress.org/support/plugin/autoptimize"
},
"require": {
"php": ">=7.2"
},
"config": {
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"php": ">=7.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"squizlabs/php_codesniffer": "^3.1",
"phpunit/phpunit": "^8.5.52",
"phpcompatibility/php-compatibility": "*",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "*"
},
"scripts": {
"test": [
"@phpunit"
],
"coverage": [
"@phpunit-coverage"
],
"phpunit": "phpunit --no-coverage",
"phpunit-coverage": "phpunit --coverage-html=./coverage/ --coverage-clover=./coverage/clover.xml",
"phpcs": "phpcs"
}
}