-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
60 lines (59 loc) · 1.49 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
58
59
60
{
"name": "islandora/chullo",
"description": "A PHP client for interacting with a Fedora 4 server.",
"type": "library",
"homepage": "https://github.com/Islandora/chullo",
"support": {
"issues": "https://github.com/Islandora/documentation/issues"
},
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^6.5.8 || ^7.4",
"easyrdf/easyrdf": "^1",
"ml/json-ld": "^1.0.4"
},
"require-dev": {
"donatj/mock-webserver": "^2.6",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.0",
"sebastian/phpcpd": "^6.0"
},
"scripts": {
"check": [
"vendor/bin/phpcs --standard=PSR2 src test",
"vendor/bin/phpcpd --suffix *.php src test"
],
"test": [
"@check",
"vendor/bin/phpunit"
]
},
"license": "MIT",
"authors": [
{
"name": "Islandora Foundation",
"email": "community@islandora.ca",
"role": "Owner"
},
{
"name": "Daniel Lamb",
"email": "dlamb@islandora.ca",
"role": "Maintainer"
},
{
"name": "Nick Ruest",
"email": "ruestn@gmail.com",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"Islandora\\Chullo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Islandora\\Chullo\\Test\\": "test/"
}
}
}