-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
42 lines (42 loc) · 1.05 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": "easyengine/site-type-wp",
"description": "EasyEngine site type package for WordPress site creation.",
"type": "ee-cli-package",
"homepage": "https://github.com/easyengine/site-type-wp",
"license": "MIT",
"authors": [],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"EE\\Site\\Type\\": "src/"
},
"files": [
"site-type-wp.php"
]
},
"require-dev": {
"wp-cli/mustangostang-spyc": "^0.6.3"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"bundled": true,
"commands": [
"site create --type=wp",
"site delete",
"site update",
"site info --type=wp",
"site enable",
"site disable",
"site info",
"site ssl",
"site list",
"site reload --type=wp",
"site restart --type=wp",
"site share",
"site clean"
]
}
}