-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (70 loc) · 2.79 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
{
"name": "brainsum/damopen-project",
"description": "Template for creating DAMopen projects with composer.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "mhavelant",
"email": "mhavelant@brainsum.com"
},
{
"name": "lbesenyei",
"email": "lbesenyei@brainsum.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"drupal/core-project-message": true
}
},
"repositories": {
"drupal-8": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"php": ">=8.1",
"drupal/core-project-message": "^10.1.8"
},
"extra": {
"drupal-core-project-message": {
"include-keys": ["homepage", "support"],
"post-create-project-cmd-message": [
"<bg=blue;fg=white> </>",
"<bg=blue;fg=white> Congratulations, you’ve installed the project skeleton </>",
"<bg=blue;fg=white> from the brainsum/damopen-project template! </>",
"<bg=blue;fg=white> </>",
"",
"<bg=yellow;fg=black>Next steps</>:",
" * Remove the plugin that prints this message:",
" composer remove drupal/core-project-message",
" * Update .env and app/drush/drush.yml as needed",
" * Fix directory permissions (e.g 770 with <web-server>:<current-user> for app/web/sites/default/files).",
" * Install Drupal and its dependencies with `composer install` from the `app` folder",
" * Install the site using the damopen profile: https://www.drupal.org/docs/8/install",
" * E.g for a local docker setup (for development): drush site-install --account-pass=123 damopen -y",
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
" * Get support: https://www.drupal.org/support",
" * Get involved with the Drupal community:",
" https://www.drupal.org/getting-involved"
]
}
},
"scripts": {
"post-create-project-cmd": [
"mkdir -p app/config/sync app/web/sites/default/files app/private_files app/tmp",
"cd app/ && composer install"
]
}
}