forked from Automattic/Co-Authors-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.32 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
73
74
{
"name": "automattic/co-authors-plus",
"description": "Multiple bylines and Guest Authors for WordPress",
"homepage": "http://wordpress.org/plugins/co-authors-plus/",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Daniel Bachhuber",
"email": "[email protected]",
"homepage": "http://danielbachhuber.com",
"role": "Developer"
},
{
"name": "Automattic",
"homepage": "http://automattic.com/"
}
],
"support": {
"issues": "https://github.com/Automattic/Co-Authors-Plus/issues",
"source": "https://github.com/Automattic/Co-Authors-Plus",
"forum": "http://wordpress.org/support/plugin/co-authors-plus"
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.6"
},
"require-dev": {
"automattic/vipwpcs": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^5 || ^6 || ^7 || ^8 || ^9",
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.3.0",
"yoast/wp-test-utils": "^1.1"
},
"autoload": {
"classmap": [
"php"
]
},
"scripts": {
"cs": [
"@php ./vendor/bin/phpcs -p -s -v -n . --standard=\"WordPress-VIP-Go\" --extensions=php --ignore=\"/vendor/*,/node_modules/*,/tests/*\""
],
"cbf": [
"@php ./vendor/bin/phpcbf -p -s -v -n . --standard=\"WordPress-VIP-Go\" --extensions=php --ignore=\"/vendor/*,/node_modules/*,/tests/*\""
],
"lint": [
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git"
],
"lint-ci": [
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git --checkstyle"
],
"prepare": [
"bash bin/install-wp-tests.sh wordpress_test root root localhost"
],
"integration": [
"@php ./vendor/bin/phpunit --exclude=ms-required"
],
"integration-ms": [
"@putenv WP_MULTISITE=1",
"@php ./vendor/bin/phpunit --exclude=ms-excluded"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}