Skip to content

Commit e921f4d

Browse files
author
Pushpinder Rana
committed
Added basic module
1 parent 8f8fb06 commit e921f4d

File tree

4 files changed

+5532
-0
lines changed

4 files changed

+5532
-0
lines changed

composer.json

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"name": "drupal/legacy-project",
3+
"description": "Project template for Drupal 8 projects with composer following drupal/drupal layout",
4+
"type": "project",
5+
"license": "GPL-2.0-or-later",
6+
"homepage": "https://www.drupal.org/project/drupal",
7+
"support": {
8+
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
9+
"chat": "https://www.drupal.org/node/314178"
10+
},
11+
"repositories": [
12+
{
13+
"type": "composer",
14+
"url": "https://packages.drupal.org/8"
15+
}
16+
],
17+
"require": {
18+
"composer/installers": "^1.9",
19+
"drupal/core-composer-scaffold": "^9",
20+
"drupal/core-project-message": "^9",
21+
"drupal/core-recommended": "^9",
22+
"drupal/core-vendor-hardening": "^9",
23+
"drupal/devel": "^4.0",
24+
"drupal/entity_reference_revisions": "^1.8",
25+
"drupal/paragraphs": "^1.12",
26+
"drupal/restui": "^1.18"
27+
},
28+
"conflict": {
29+
"drupal/drupal": "*"
30+
},
31+
"minimum-stability": "dev",
32+
"prefer-stable": true,
33+
"config": {
34+
"sort-packages": true
35+
},
36+
"extra": {
37+
"drupal-scaffold": {
38+
"locations": {
39+
"web-root": "./"
40+
}
41+
},
42+
"installer-paths": {
43+
"core": [
44+
"type:drupal-core"
45+
],
46+
"libraries/{$name}": [
47+
"type:drupal-library"
48+
],
49+
"modules/contrib/{$name}": [
50+
"type:drupal-module"
51+
],
52+
"profiles/contrib/{$name}": [
53+
"type:drupal-profile"
54+
],
55+
"themes/contrib/{$name}": [
56+
"type:drupal-theme"
57+
],
58+
"drush/Commands/contrib/{$name}": [
59+
"type:drupal-drush"
60+
],
61+
"modules/custom/{$name}": [
62+
"type:drupal-custom-module"
63+
],
64+
"themes/custom/{$name}": [
65+
"type:drupal-custom-theme"
66+
]
67+
},
68+
"drupal-core-project-message": {
69+
"include-keys": [
70+
"homepage",
71+
"support"
72+
],
73+
"post-create-project-cmd-message": [
74+
"<bg=blue;fg=white> </>",
75+
"<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
76+
"<bg=blue;fg=white> from the drupal/legacy-project template! </>",
77+
"<bg=blue;fg=white> </>",
78+
"",
79+
"<bg=yellow;fg=black>Next steps</>:",
80+
" * Install the site: https://www.drupal.org/docs/8/install",
81+
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
82+
" * Get support: https://www.drupal.org/support",
83+
" * Get involved with the Drupal community:",
84+
" https://www.drupal.org/getting-involved",
85+
" * Remove the plugin that prints this message:",
86+
" composer remove drupal/core-project-message"
87+
]
88+
}
89+
}
90+
}

0 commit comments

Comments
 (0)