-
Notifications
You must be signed in to change notification settings - Fork 87
/
composer.json
42 lines (42 loc) · 1.2 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
{
"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"
},
"require-dev": {
"php": ">=7.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"squizlabs/php_codesniffer": "^3.1",
"phpunit/phpunit": "^7.5.0",
"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"
}
}