-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
38 lines (38 loc) · 987 Bytes
/
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
{
"name": "aaemnnosttv/version-assets",
"description": "A WordPress plugin to automatically apply a content-based version on all of your assets to optimize browser caching.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Evan Mattson",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"roots/wordpress-core-installer": true,
"composer/installers": true
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require": {
"php": ">=5.6",
"composer/installers": ">=1.0"
},
"require-dev": {
"roots/wordpress": "^6",
"squizlabs/php_codesniffer": "^3",
"wp-phpunit/wp-phpunit": "^6",
"yoast/phpunit-polyfills": "^1"
},
"scripts": {
"lint": "phpcs",
"test": "phpunit"
}
}