-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathcomposer.json
63 lines (63 loc) · 1.87 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
{
"name": "pantheon-systems/solr-power",
"description": "An open source plugin to connect to Pantheon's Apache Solr search infrastructure, or your own!",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Pantheon",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/pantheon-systems/solr-power/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"solarium/solarium": "~4",
"symfony/event-dispatcher": "^3.4"
},
"require-dev": {
"pantheon-systems/pantheon-wordpress-upstream-tests": "dev-master",
"wp-coding-standards/wpcs": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpunit/phpunit": "^6 || ^7",
"phpcompatibility/php-compatibility": "^9.3",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"lint": [
"@phpcbf",
"@phpcs"
],
"fix": [
"@phpcbf"
],
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"phpunit": "vendor/bin/phpunit",
"phpunit-shouldcommit": [
"vendor/bin/phpunit --group should-commit --filter testShouldNotCommitWhenConstNull",
"vendor/bin/phpunit --group should-commit --filter testShouldNotCommitWhenConstTrue",
"vendor/bin/phpunit --group should-commit --filter testShouldCommitWhenConstFalse"
],
"test": [
"@phpunit-shouldcommit",
"@phpunit"
]
},
"autoload": {
"classmap": [
"includes"
]
}
}