-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
37 lines (37 loc) · 930 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
{
"name": "mik/move-to-islandora-kit",
"license": "GPL-3.0",
"type": "project",
"description": "Move to Islandora Kit",
"autoload": {
"classmap": ["src/"],
"psr-4": {
"mik\\tests\\": "tests/",
"mik\\" : "src/"
}
},
"require-dev": {
"phpunit/phpunit":"4.8.*"
},
"require": {
"php": ">=5.5.0",
"monolog/monolog": "~1.13",
"squizlabs/php_codesniffer":"~2.3",
"league/csv":"^8.0",
"box/spout":"*",
"league/climate":"~3.1",
"caseyamcl/phpoaipmh": "~2.0",
"guzzlehttp/guzzle": "~6.0",
"ramsey/uuid": "~3.0",
"cocur/background-process": "^0.5.0",
"nategood/commando": "*",
"twig/twig": "~1.0"
},
"scripts": {
"check": "phpcs --standard=PSR2 src tests",
"test": [
"@check",
"phpunit"
]
}
}