-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
104 lines (104 loc) · 2.92 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "lucacracco/multisite_solr_search",
"description": "Project template custom for Drupal 8 projects",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": "^7.3",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.7",
"drupal/console": "^1.0.2",
"drupal/core-composer-scaffold": "^8.9",
"drupal/core-project-message": "^8.9",
"drupal/core-recommended": "^8.9",
"drupal/search_api": "1.19",
"drupal/search_api_solr": "4.1.11",
"drush/drush": "^9.7.1 | ^10.0.0",
"lucacracco/robo-drupal": "^1.0"
},
"require-dev": {
"bex/behat-screenshot": "^2.1",
"drupal/core-dev": "^8.9",
"drupal/devel": "^4.1",
"drupal/drupal-extension": "^4.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"scripts": {
"prestissimo": [
"composer global require hirak/prestissimo --prefer-dist"
],
"nuke": [
"rm -rf vendor web/core web/modules/contrib web/profiles/contrib web/themes/contrib",
"@composer clearcache --ansi",
"@composer install --ansi --no-interaction --prefer-dist"
],
"post-create-project-cmd": [
"php -r \"copy('docker/.env.dist', 'docker/.env');\""
]
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"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/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
},
"drupal-core-project-message": {
"post-create-project-cmd-message": [
"<bg=blue;fg=white> </>",
"<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
"<bg=blue;fg=white> </>",
"",
"<bg=yellow;fg=black>Next steps</>:",
" * update .env file of Docker ",
" * launch local stack: <bg=magenta;fg=black>cd docker; make up; make shell</> ",
" * Prepare files: <bg=magenta;fg=black>robo scaffold</> ",
" * Install the site: <bg=magenta;fg=black>robo install standard</> "
]
}
}
}