-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 2.89 KB
/
composer.json
File metadata and controls
97 lines (97 loc) · 2.89 KB
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
{
"name": "mortenson/mortenson.github.io",
"description": "The personal homepage for Sam Mortenson.",
"type": "project",
"authors": [
{
"name": "Samuel Mortenson",
"email": "samuel@mortenson.coffee"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "vcs",
"url": "https://github.com/mortenson/codetag"
},
{
"type": "package",
"package": {
"name": "ckeditor/codetag",
"version": "1.0.0",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/codetag/releases/codetag_0.1_0.zip",
"type": "zip"
}
}
}
],
"require": {
"composer/installers": "^1.2",
"drupal/core-composer-scaffold": "^9",
"drupal/core": "^10",
"drush/drush": "^12",
"drupal/tome": "1.x-dev",
"drupal-tome/tome_drush": "dev-master",
"drupal/sfc": "dev-1.x",
"drupal/twig_tweak": "^3",
"drupal/admin_toolbar": "^3",
"scrivo/highlight.php": "^9.17",
"ckeditor/codetag": "1.0.0",
"drupal/codetag": "dev-1.x",
"drupal/pathauto": "^1.6",
"drupal/redirect": "^1.5",
"drupal/lunr": "1.x-dev",
"drupal/simple_sitemap": "^4",
"drupal/paragraphs": "^1.17",
"drupal/hax": "^9.1",
"drupal/jsonapi_include": "^1.7",
"drupal/metatag": "^2.1"
},
"scripts": {
"symlink": "./scripts/symlink.sh",
"post-install-cmd": [
"@composer drupal:scaffold",
"@symlink"
],
"post-update-cmd": [
"@composer drupal:scaffold",
"@symlink"
],
"gh-runserver": "drush uli -l https://${CODESPACE_NAME}-8888.githubpreview.dev && drush runserver 0.0.0.0:8888"
},
"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"]
},
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "./web"
},
"overwrite": true
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true
},
"platform":{
"php":"8.1"
}
}
}