-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.13 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
{
"name": "vufind-org/vufind-marc",
"description": "MARC record processing library for the VuFind project",
"authors": [
{
"name": "Ere Maijala",
"email": "[email protected]"
},
{
"name": "Demian Katz",
"email": "[email protected]"
}
],
"homepage": "https://vufind.org/",
"license": "GPL-2.0",
"support": {
"issues": "https://vufind.org/jira"
},
"autoload": {
"psr-4": {
"VuFind\\Marc\\": "src/"
}
},
"config": {
"platform": {
"php": "8.1"
}
},
"require": {
"php": ">=8.1",
"opis/json-schema": "^2.3.0",
"pcrov/jsonreader": "^1.0.2",
"vufind-org/vufindcode": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.64.0",
"guzzlehttp/guzzle": "^7.8.1",
"pear/http_request2": "2.6.0",
"phpmd/phpmd": "2.15.0",
"phpstan/phpstan": "1.12.7",
"phpunit/phpunit": "10.5.36",
"phing/phing": "3.0",
"squizlabs/php_codesniffer": "3.10.3"
}
}