-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.05 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
{
"name": "islandora/fedora-entity-mapper",
"description": "Drupal <-> Fedora Entity Mapper",
"type": "library",
"homepage": "https://github.com/Islandora/islandora-fedora-entity-mapper",
"support": {
"issues": "https://github.com/Islandora/documentation/issues"
},
"require-dev": {
"phpunit/phpunit": "9.6.5",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Islandora\\EntityMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Islandora\\Tests\\EntityMapper\\": "tests/"
}
},
"scripts": {
"check": [
"phpcs --standard=PSR2 --extensions=php --ignore=\"vendor/\" .",
"phpcpd --suffix *.php --exclude vendor . "
],
"test": [
"@check",
"./vendor/bin/phpunit"
]
},
"license": "MIT",
"authors": [
{
"name": "Islandora Foundation",
"email": "[email protected]",
"role": "Owner"
},
{
"name": "Daniel Lamb",
"email": "[email protected]",
"role": "Maintainer"
}
]
}