-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
57 lines (57 loc) · 1.65 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
{
"name": "drupal/jsonld",
"description": "JSON-LD serializer for Drupal",
"type": "drupal-module",
"license": "GPL-2.0+",
"homepage": "https://github.com/Islandora/jsonld",
"support": {
"issues": "https://github.com/Islandora/documentation/issues"
},
"authors": [
{
"name": "Islandora Foundation",
"email": "community@islandora.ca",
"role": "Owner"
},
{
"name": "Jared Whiklo",
"email": "jwhiklo@gmail.com",
"role": "Maintainer"
}
],
"replace" : {
"islandora/jsonld": "self.version"
},
"require" : {
"drupal/hal": "^1||^2",
"drupal/rdf": "^3.0@beta"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3",
"drupal/coder": "*",
"sebastian/phpcpd": "*"
},
"autoload": {
"psr-4": {
"Drupal\\jsonld\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\jsonld\\": "tests/src/"
}
},
"scripts": {
"post-install-cmd": [
"./vendor/bin/phpcs --config-set installed_paths ~/.composer/vendor/drupal/coder/coder_sniffer"
],
"post-update-cmd": [
"./vendor/bin/phpcs --config-set installed_paths ~/.composer/vendor/drupal/coder/coder_sniffer"
],
"check": [
"./vendor/bin/phpcs --standard=Drupal --ignore=*.md,vendor --extensions=php,module,inc,install,test,profile,theme,css,info .",
"./vendor/bin/phpcpd --names='*.module,*.inc,*.test,*.php' --exclude=vendor ."
]
}
}