-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.31 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nicolae-grigoriu/fntc",
"description": "A drupal 9 project for the National Contemparan Taekwon-Do Federation",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "Nicolae Grigoriu",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "vcs",
"url": "[email protected]:NicolaeGrigoriu/fntc_theme.git"
}
],
"require": {
"php": ">=7.0",
"composer/installers": "^1.2",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/admin_toolbar": "^2.0",
"drupal/bootstrap_barrio": "^4.22",
"drupal/console": "^1",
"drupal/core": "^8.9",
"drush/drush": "^10.3",
"fntc/fntc_theme": "dev-development",
"drupal/config_split": "^1.4",
"drupal/module_filter": "^3.1",
"drupal/social_auth_facebook": "^2.0",
"drupal/social_auth_google": "^2.1"
},
"require-dev": {
"drupal/drupal-extension": "^3.2"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"sh ./scripts/composer/post-install.sh"
],
"post-update-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
]
},
"config": {
"bin-dir": "bin/"
},
"extra": {
"scripts-dev": {
"post-install-cmd": [
"sh ./scripts/tools/setup.sh"
]
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"],
"web/libraries/{$name}": ["type:drupal-library"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"patches": {
},
"enable-patching": true
}
}