-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
118 lines (118 loc) · 3.69 KB
/
composer.json
File metadata and controls
118 lines (118 loc) · 3.69 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "drupalportugal/drupal-pt.org",
"description": "Drupal Portugal",
"keywords": [ "project", "drupal", "community" ],
"homepage": "http://drupal.pt",
"support": {
"source": "https://github.com/drupalportugal/drupal-pt.org",
"docs": "https://github.com/drupalportugal/drupal-pt.org/wiki",
"issues": "https://github.com/drupalportugal/drupal-pt.org/issues",
"forum": "https://groups.drupal.org/portugal",
"irc": "irc://irc.freenode.org/drupal-pt",
"email": "info@drupal.pt"
},
"type": "project",
"license": [
"GPL-2.0+"
],
"authors": [
{
"name": "Ricardo Amaro",
"email": "ricardoamaro@drupal.pt",
"homepage": "https://drupal.pt",
"role": "DevOps"
},
{
"name": "Hernani Freitas",
"email": "hernaniborgesdefreitas@gmail.com",
"homepage": "http://hernani.pt",
"role": "DevOps"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^2.3",
"cweagans/composer-patches": "^1.6.4",
"drupal/acquia_connector": "^4.0",
"drupal/address": "^2.0",
"drupal/admin_toolbar": "^3.0",
"drupal/bootstrap_barrio": "*",
"drupal/commerce": "^2.27",
"drupal/commerce_license": "^3",
"drupal/commerce_paypal": "^1.0@RC",
"drupal/config_split": "^1.3.0",
"drupal/content_access": "^1.0",
"drupal/core-composer-scaffold": "^10.5",
"drupal/core-project-message": "^10.5",
"drupal/core-recommended": "^10.5",
"drupal/ds": "^3.1.0",
"drupal/entity_reference_revisions": "^1.3.0",
"drupal/eu_cookie_compliance": "^1.0",
"drupal/gin": "^4.0",
"drupal/google_analytics": "*",
"drupal/inline_entity_form": "^1.0.0-beta1",
"drupal/languagefield": "^1.4.0",
"drupal/markdown": "dev-3.0.x",
"drupal/memcache": "^2.0",
"drupal/metatag": "^2.1",
"drupal/name": "^1.0.0-beta1",
"drupal/pathauto": "^1.0.0",
"drupal/profile": "^1.0.0-rc1",
"drupal/quick_node_clone": "^1.15",
"drupal/recaptcha": "^3.0",
"drupal/redirect": "^1.0.0",
"drupal/token": "^1.1.0",
"drupal/views_slideshow": "*",
"drupal/webform": "^6.3",
"drush/drush": "^13.0",
"league/commonmark": "^1.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.1.7"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true
}
},
"autoload": {
"psr-4": {
"Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
}
},
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/libraries/{$name}": ["type:drupal-library"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"patches": {
"drupal/core": {
"[2957368] - Call to a member function transformDimensions()":
"https://www.drupal.org/files/issues/2023-06-26/drupal-2957368-45.patch"
}
}
}
}