-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 1.39 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
{
"name": "buddypress/bp-blocks",
"description": "BuddyPress Blocks 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-blocks/issues",
"rss": "https://buddypress.org/feed/",
"source": "https://github.com/buddypress/bp-blocks"
},
"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",
"do:wpcs": "@php ./vendor/bin/phpcs --extensions=php --standard=WordPress inc build class-bp-blocks.php",
"format": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"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 build class-bp-blocks.php"
}
}