forked from buddypress/BP-REST
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.4 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "buddypress/bp-rest",
"description": "Access your BuddyPress site's data through an easy-to-use HTTP REST API.",
"type": "wordpress-plugin",
"keywords": [
"bp-rest",
"bp-rest-api",
"buddypress",
"rest",
"plugin"
],
"homepage": "https://buddypress.org",
"license": "GPL-2.0-or-later",
"authors": [ {
"name": "BuddyPress Community",
"homepage": "https://buddypress.org/about/"
} ],
"support": {
"forum": "https://buddypress.org/support/",
"docs": "https://codex.buddypress.org/",
"issues": "https://buddypress.trac.wordpress.org/",
"rss": "https://buddypress.org/feed/",
"source": "https://buddypress.trac.wordpress.org/browser/",
"wiki": "https://codex.buddypress.org/"
},
"repositories": [
{
"url": "https://github.com/buddypress/bp-coding-standards.git",
"type": "git"
}
],
"require": {
"composer/installers": "^1.10.0",
"php": ">=5.6.0"
},
"require-dev": {
"buddypress/bp-coding-standards": "dev-trunk",
"wp-phpunit/wp-phpunit": "^6.2",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"phpcs" : "phpcs . --basepath=.",
"phpcbf": "phpcbf . --basepath=.",
"phpunit": "phpunit",
"phpunit:mu": "phpunit -c tests/multisite.xml"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}