-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.44 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
{
"name": "drupal-tome/netlify-template",
"description": "A Netlify template for Tome.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Samuel Mortenson",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/core": "~8.5",
"drush/drush": "^9.0.0",
"drupal/tome": "^1.0",
"drupal-tome/tome_drush": "dev-master"
},
"scripts": {
"symlink": "./scripts/symlink.sh",
"post-install-cmd": [
"@composer drupal:scaffold",
"@symlink"
],
"post-update-cmd": [
"@composer drupal:scaffold",
"@symlink"
]
},
"extra": {
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
}
}
}