forked from felixarntz/plugin-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 1.12 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
43
44
45
{
"name": "awsmug/plugin-lib",
"type": "wordpress-muplugin",
"description": "Reusable library for all kinds of WordPress plugins.",
"version": "1.0.4",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"plugin",
"library"
],
"homepage": "https://leaves-and-love.net",
"authors": [
{
"name": "Felix Arntz",
"email": "[email protected]",
"homepage": "https://leaves-and-love.net",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/felixarntz/plugin-lib/issues"
},
"config": {
"preferred-install": "dist"
},
"require": {
"php": ">=5.5.0",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": ">4.8.20 <6.0",
"phpmd/phpmd": "*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"sebastian/phpcpd": "*"
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
]
}
}