This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.58 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
{
"name": "buddypress/bp-rewrites",
"description": "BuddyPress Rewrites development plugin.",
"type": "buddypress-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/",
"issues": "https://github.com/buddypress/bp-rewrites/issues",
"rss": "https://buddypress.org/feed/",
"source": "https://github.com/buddypress/bp-rewrites"
},
"require": {
"composer/installers": "^1.10.0",
"php": ">=5.6.0"
},
"require-dev": {
"phpcompatibility/phpcompatibility-wp": "^2.1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"squizlabs/php_codesniffer" : "^3.5.4",
"wp-coding-standards/wpcs" : "^2.3.0",
"php-parallel-lint/php-parallel-lint": "^1.3.0"
},
"scripts": {
"lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=WordPress",
"do:wpcs": "@php ./vendor/bin/phpcs --extensions=php --standard=WordPress inc src class-bp-rewrites.php",
"format": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --standard=WordPress",
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude node_modules --exclude vendor .",
"phpcompat": "@php ./vendor/bin/phpcs -p --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 5.6- inc src class-bp-rewrites.php"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}