-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.17 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "vufind-org/vufindharvest",
"description": "VuFind Harvest Tools",
"authors": [
{
"name": "Demian Katz",
"email": "demian.katz@villanova.edu",
"role": "Maintainer"
}
],
"homepage": "https://vufind.org/",
"license": "GPL-2.0-only",
"support": {
"issues": "https://vufind.org/jira"
},
"config": {
"platform": {
"php": "8.2"
}
},
"require": {
"php": ">=8.2",
"laminas/laminas-http": ">=2.2",
"symfony/console": "^5.3||^6||^7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.89.0",
"guzzlehttp/guzzle": "^7.10.0",
"phpmd/phpmd": "2.15.0",
"phpstan/phpstan": "2.1.32",
"phpunit/phpunit": "11.5.50",
"phing/phing": "3.1.0",
"rector/rector": "2.2.7",
"squizlabs/php_codesniffer": "4.0.1"
},
"autoload": {
"psr-4": {
"VuFindHarvest\\": "src/",
"VuFindTest\\Feature\\": "tests/unit-tests/src/VuFindTest/Feature/"
}
},
"scripts": {
"fix": "phing fix-php",
"qa": "phing qa-console"
}
}