-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
57 lines (57 loc) · 1.61 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
{
"name": "internations/solr-query-component",
"description": "Build Solr queries with ease",
"license": "MIT",
"authors": [
{
"name": "Malvika Chauhan",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Lars Strojny",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Max Beutel",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Michael Weinrich",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Marc Jakubowski",
"email": "[email protected]",
"role": "Contributor"
}
],
"require": {
"php": ">=7.4",
"lstrojny/functional-php": "~0.1|~1.0",
"internations/solr-utils": "~0.8"
},
"require-dev": {
"internations/kodierungsregelwerksammlung": "~0.35",
"phpunit/phpunit": "~9",
"roave/backward-compatibility-check": "^5 || ^6"
},
"autoload": {
"psr-0": {
"InterNations\\Component\\Solr": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"tests": "phpunit",
"coding-style": "phpcs --standard=vendor/internations/kodierungsregelwerksammlung/ruleset.xml ./src/",
"backward-compatibility-check": "roave-backward-compatibility-check"
}
}