-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.15 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
{
"name": "internations/solr-utils",
"description": "Solr/Lucene utilities for PHP",
"license": "MIT",
"authors": [
{
"name": "Malvika Chauhan",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Lars Strojny",
"email": "[email protected]",
"role": "Contributor"
}
],
"scripts": {
"tests": "phpunit",
"coding-style": "phpcs --standard=vendor/internations/kodierungsregelwerksammlung/ruleset.xml ./src/",
"backward-compatibility-check": "roave-backward-compatibility-check"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"internations/kodierungsregelwerksammlung": "~0.35",
"phpunit/phpunit": "~9",
"roave/backward-compatibility-check": "^5 || ^6"
},
"autoload": {
"psr-0": {
"InterNations\\Component\\Solr\\Util": "src/",
"InterNations\\Component\\Solr\\ExpressionInterface": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}