-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
34 lines (34 loc) · 1000 Bytes
/
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
{
"name": "10up/debug-bar-elasticpress",
"description": "Extends the Debug Bar plugin for usage with ElasticPress",
"type": "wordpress-plugin",
"keywords": ["wordpress", "plugin", "elasticsearch", "elasticpress", "search", "debug", "debug bar"],
"authors": [
{
"name": "Taylor Lovett",
"email": "taylorl@get10up.com"
},
{
"name": "10up",
"homepage": "http://10up.com"
}
],
"require": {
"php": ">=7.0"
},
"license": ["GPL-2.0-only"],
"require-dev": {
"10up/phpcs-composer": "dev-master",
"phpcompatibility/phpcompatibility-wp": "*"
},
"scripts": {
"lint": "phpcs debug-bar-elasticpress.php classes",
"lint-fix": "phpcbf debug-bar-elasticpress.php classes",
"check-php-compat": "phpcs debug-bar-elasticpress.php classes --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 7.0-"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}