-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 1006 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
{
"name": "bbpress/wp-cli-bbpress",
"type": "wp-cli-package",
"description": "WP-CLI Community Package of bbPress commands",
"keywords": [ "wp-cli", "bbpress", "forum", "wordpress", "bpp" ],
"homepage": "https://github.com/bbpress/wp-cli-bbpress",
"license": "MIT",
"authors": [
{
"name": "The bbPress Contributors",
"homepage": "https://bbpress.org/"
}
],
"support": {
"issues": "https://bbpress.trac.wordpress.org",
"source": "https://github.com/bbpress/wp-cli-bbpress"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [ "wp-cli-bbp.php" ]
},
"require": {
"php": ">=5.4",
"wp-cli/wp-cli": ">=0.23.0"
},
"require-dev": {
"behat/behat": "~2.5"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"bundled": true,
"commands": [
"bbp"
]
}
}