-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
72 lines (72 loc) · 1.63 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
{
"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/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"buddypress/bp-coding-standards": "dev-trunk",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"test": "@php ./vendor/phpunit/phpunit/phpunit",
"test_multi": "@php ./vendor/phpunit/phpunit/phpunit -c tests/multisite.xml",
"phpunit": "@test",
"phpcs": "@php ./vendor/bin/phpcs . --basepath=.",
"phpcbf": "@php ./vendor/bin/phpcbf . --basepath=."
},
"archive": {
"exclude": [
"*.xml",
"*.dist",
"*.cache",
"phpcs.xml.dist",
"phpunit.xml.dist",
"wp-env.json",
"composer.json",
"composer.lock",
".editorconfig",
"CHANGELOG.md",
"CONTRIBUTING.md",
"README.md",
".gitignore",
".distignore",
".deployignore",
".github/",
".phpcs/",
"tests/",
"bp-rest-api.zip",
"!vendor/"
]
}
}