-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 2.03 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": "digitalutsc/drupal_fits",
"type": "drupal-module",
"description": "This Drupal 8/9 module consumes File Information Tool Set (Fits) to retrieve and extract technical metadata for fieldable files.",
"keywords": [
"fits",
"Technical metadata"
],
"license": "GPL-2.0-only",
"homepage": "https://www.drupal.org/project/fits",
"support": {
"issues": "https://www.drupal.org/project/issues/fits",
"source": "https://git.drupalcode.org/project/fits"
},
"minimum-stability": "dev",
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"mtdowling/jmespath.php": "2.6.1",
"drupal/json_field": "^1.2",
"drupal/file_entity": "^2.0",
"drupal/field_permissions": "^1.4",
"drupal/advancedqueue": "^1.2",
"drupal/context":"^5.0@RC"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3",
"drupal/coder": "*",
"sebastian/phpcpd": "*"
},
"authors": [
{
"name": "The University of Toronto Scarborough Library's Digital Scholarship Unit (DSU)",
"email": "[email protected]",
"role": "Owner"
},
{
"name": "Kyle Huynh",
"email": "[email protected]",
"role": "Maintainer"
}
],
"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 ."
]
}
}