-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.34 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
{
"name": "drupal/file_link",
"description": "Extends the core Link module by storing metadata about the target file.",
"type": "drupal-module",
"homepage": "http://drupal.org/project/file_link",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Claudiu Cristea",
"homepage": "https://www.drupal.org/u/claudiu.cristea"
}
],
"support": {
"issues": "https://www.drupal.org/project/issues/file_link",
"source": "http://cgit.drupalcode.org/file_link"
},
"require-dev": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "~1.0",
"drupal-composer/drupal-scaffold": "^2.2",
"drush/drush": "~9",
"webflo/drupal-core-require-dev": "~8.5",
"phpro/grumphp": "~0.14",
"openeuropa/task-runner": "^0.7"
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"extra": {
"installer-paths": {
"build/core": ["type:drupal-core"],
"build/modules/contrib/{$name}": ["type:drupal-module"],
"build/profiles/contrib/{$name}": ["type:drupal-profile"],
"build/themes/contrib/{$name}": ["type:drupal-theme"]
}
},
"config": {
"sort-packages": true
}
}