forked from isotopsweden/wp-hercules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.27 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
46
47
{
"name": "isotopsweden/wp-hercules",
"type": "wordpress-muplugin",
"license": "MIT",
"description": "Simple domain mapping for top domains",
"homepage": "https://github.com/isotopsweden/wp-hercules",
"authors": [
{
"name": "Fredrik Forsmo",
"email": "[email protected]",
"homepage": "https://github.com/frozzare"
},
{
"name": "Rasmus Bengtsson",
"homepage": "https://github.com/rasmusbe"
}
],
"autoload": {
"classmap": ["src/"],
"files": [
"src/cli.php",
"src/helpers.php"
]
},
"keywords": [
"wordpress",
"plugin"
],
"require": {
"php": "^5.5.9 || ^7.0",
"composer/installers": "~1.0"
},
"require-dev": {
"frozzare/wp-test-suite": "~1.0",
"isotopsweden/isotopcs": "dev-master"
},
"scripts": {
"config-isotopcs": [
"if [ -f vendor/bin/phpcs ]; then \"vendor/bin/phpcs\" --config-set installed_paths ../../../vendor/wp-coding-standards/wpcs,../../../vendor/isotopsweden/isotopcs; fi",
"if [ -f vendor/bin/phpcs ]; then \"vendor/bin/phpcs\" --config-set default_standard Isotop; fi"
],
"post-install-cmd": "composer config-isotopcs",
"post-update-cmd" : "composer config-isotopcs"
},
"minimum-stability": "dev",
"prefer-stable": true
}