-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
89 lines (89 loc) · 1.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "buddypress/wp-cli-buddypress",
"type": "wp-cli-package",
"description": "WP-CLI Community Package of BuddyPress commands",
"homepage": "https://github.com/buddypress/wp-cli-buddypress",
"license": "MIT",
"keywords": [
"wp-cli",
"buddypress",
"community",
"wordpress",
"bp",
"wp"
],
"authors": [
{
"name": "The BuddPress Contributors",
"homepage": "https://buddypress.org/"
}
],
"support": {
"issues": "https://github.com/buddypress/wp-cli-buddypress/issues",
"source": "https://github.com/buddypress/wp-cli-buddypress"
},
"require": {
"php": ">=5.6.0",
"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"
},
"scripts": {
"behat": "run-behat-tests",
"behat-rerun": "rerun-behat-tests",
"phpunit": "behat",
"lint": "run-linter-tests",
"phpcs": "run-phpcs-tests",
"phpcbf": "run-phpcbf-cleanup",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@behat"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"wp-cli-bp.php"
]
},
"config": {
"process-timeout": 1800,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"bundled": true,
"commands": [
"wp bp",
"wp bp activity",
"wp bp activity meta",
"wp bp activity favorite",
"wp bp group",
"wp bp group meta",
"wp bp group member",
"wp bp group invite",
"wp bp message",
"wp bp email",
"wp bp component",
"wp bp member",
"wp bp notification",
"wp bp tool",
"wp bp signup",
"wp bp xprofile",
"wp bp notice",
"wp bp xprofile field",
"wp bp xprofile group",
"wp bp xprofile data",
"wp bp scaffold"
]
}
}