-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·112 lines (112 loc) · 3.8 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
105
106
107
108
109
110
111
112
{
"name": "seanb/portfolio",
"description": "Portfolio website to display personal information, experience and recent projects.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Sean Blommaert",
"role": "developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=8.1",
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.6.5",
"drush/drush": "^12",
"drupal/core-composer-scaffold": "^10.3",
"drupal/core-recommended": "^10.3",
"drupal/admin_toolbar": "^3.1",
"drupal/allowed_formats": "^1.3",
"drupal/config_filter": "^2.2",
"drupal/config_split": "^2.0",
"drupal/ctools": "^3.7",
"drupal/devel": "^5.1",
"drupal/entity_reference_revisions": "^1.9",
"drupal/field_group": "^3.2",
"drupal/google_tag": "^1.4",
"drupal/honeypot": "^2.0",
"drupal/imagick": "^1.5",
"drupal/inline_entity_form": "^1.0.0-rc7",
"drupal/memcache": "^2.3",
"drupal/menu_link_attributes": "^1.2",
"drupal/metatag": "^1.16",
"drupal/minifyhtml": "^2",
"drupal/paragraphs": "^1.12",
"drupal/pathauto": "^1.8",
"drupal/token": "^1.7",
"drupal/twig_tweak": "^3.1.2",
"drupal/webform": "^6.1.0-beta1",
"drupal/xmlsitemap": "^1.0",
"drupal/fortytwo": "^4.6",
"vlucas/phpdotenv": "^4.0",
"webflo/drupal-finder": "^1.0.0",
"zaporylie/composer-drupal-optimizations": "^1.0",
"drupal/upgrade_status": "^4.0",
"drupal/advagg": "^6.0@alpha",
"drupal/seven": "^1.0",
"drupal/ckeditor": "^1.0"
},
"require-dev": {
"drupal/core-dev": "^10.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"zaporylie/composer-drupal-optimizations": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"tbachert/spi": true
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/.csslintrc": false,
"[web-root]/.eslintignore": false,
"[web-root]/.eslintrc.json": false,
"[web-root]/.ht.router.php": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.md": false,
"[web-root]/example.gitignore": false,
"[web-root]/update.php": false,
"[web-root]/web.config": false
}
},
"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"]
},
"patches": {
"drupal/paragraphs": {
"2868155 - Add new hooks to allow easier editing of paragraph forms":
"https://www.drupal.org/files/issues/2868155-4.patch"
}
}
}
}