-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcomposer.json
43 lines (43 loc) · 892 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
39
40
41
42
43
{
"name": "kasparsd/minit",
"description": "A WordPress plugin to combine CSS and Javascript files",
"homepage": "https://github.com/kasparsd/minit",
"keywords": [
"wordpress",
"plugins",
"css",
"js",
"combine",
"minify",
"concatenate",
"optimization",
"performance",
"speed"
],
"support": {
"issues": "https://github.com/kasparsd/minit/issues",
"source": "https://github.com/kasparsd/minit"
},
"license": "GPL-2.0-or-later",
"authors": [{
"name": "Kaspars Dambis",
"email": "[email protected]",
"homepage": "https://kaspars.net"
}],
"type": "wordpress-plugin",
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^1.2",
"phpunit/phpunit": "^5.7"
},
"scripts": {
"lint": [
"vendor/bin/phpcs ."
],
"test": [
"vendor/bin/phpunit"
]
}
}