-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
44 lines (44 loc) · 1009 Bytes
/
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
{
"name": "jonathangreen/tuque",
"description": "A PHP API for connecting to the Fedora Commons 3.x repository software.",
"homepage": "http://github.com/jonathangreen/tuque",
"license": "GPLv3",
"type": "library",
"keywords": ["fedora","fedora commons","fcrepo"],
"authors": [
{
"name": "Jonathan Green",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"php": ">=5.5.0",
"ext-curl": "*",
"ext-xml": "*",
"ext-xsl": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35",
"squizlabs/php_codesniffer": "^2.8.1",
"sebastian/phpcpd": "^2.0.4"
},
"autoload": {
"psr-4": {"Islandora\\Tuque\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Islandora\\Tuque\\Tests\\": "tests/" }
},
"scripts": {
"check": [
"phpcs --standard=PSR2 src",
"phpcpd --names *.php src"
],
"test": [
"@check",
"phpunit"
]
}
}