-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 961 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
44
45
46
47
{
"name": "siteservice/clp-utils",
"type": "wp-cli-package",
"description": "Utility Functions for WP_CLI, specific to servers manged with CloudPanel.io",
"homepage": "https://github.com/siteservice/clp-utils",
"license": "MIT",
"keywords": [
"cloupanel",
"clp",
"wordpress",
"wp-cli",
"wp"
],
"require": {
"wp-cli/wp-cli": "^2"
},
"require-dev": {
"wp-cli/scaffold-command": "^2",
"wp-cli/extension-command": "^2",
"wp-cli/entity-command": "^2",
"wp-cli/wp-cli-tests": "^4"
},
"autoload": {
"files": [
"clp-utils.php"
]
},
"authors": [
{
"name": "Site Service",
"email": "support@siteservice.net",
"homepage": "https://siteservice.net"
}
],
"extra": {
"bundled": true,
"commands": [
"wp clp",
"wp clp copy"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}