-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
46 lines (46 loc) · 1.12 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
{
"name": "vufind-org/vufindhttp",
"description": "VuFind HTTP service library",
"authors": [
{
"name": "David Maus",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Demian Katz",
"email": "[email protected]",
"role": "Maintainer"
}
],
"homepage": "https://vufind.org/",
"license": "GPL-2.0",
"support": {
"issues": "https://vufind.org/jira"
},
"config": {
"platform": {
"php": "8.1"
}
},
"require": {
"php": ">=8.1",
"laminas/laminas-http": ">=2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.64.0",
"guzzlehttp/guzzle": "^7.8.1",
"laminas/laminas-uri": ">=2.2",
"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"
},
"autoload": {
"psr-0": {
"VuFindHttp\\": "src/"
}
}
}