-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
116 lines (116 loc) · 4.23 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
113
114
115
116
{
"name": "apigee/devportal-kickstart-project",
"description": "Composer project template for the Apigee Developer Portal Drupal distribution.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/apigee_devportal_kickstart",
"support": {
"docs": "https://www.drupal.org/docs/8/modules/apigee-developer-portal-kickstart"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "furf/jquery-ui-touch-punch",
"version": "dev-master",
"type": "drupal-library",
"dist": {
"url": "https://github.com/furf/jquery-ui-touch-punch/archive/master.zip",
"type": "zip"
}
}
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"apigee/apigee_devportal_kickstart": "^3",
"composer/installers": "^1.9",
"drupal/apigee_m10n": "^2.1.1",
"drupal/commerce": "^2.36",
"drupal/core-composer-scaffold": "^10",
"drupal/core-project-message": "^10",
"drupal/core-recommended": "^10",
"drupal/google_analytics": "^4.0",
"drupal/jsonapi_extras": "^3.25",
"drupal/smtp": "^1.2",
"furf/jquery-ui-touch-punch": "dev-master",
"drupal/adminimal_admin_toolbar": "^1.0@dev"
},
"require-dev": {
"apigee/apigee-mock-client-php": "^1.1",
"drupal/core-dev": "^10",
"drush/drush": "^12.4.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"process-timeout": 0,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true,
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"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"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"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 Apigee Developer Portal Drupal codebase </>",
"<bg=blue;fg=white> from the apigee/devportal-kickstart-project template! </>",
"<bg=blue;fg=white> </>",
"",
"<bg=yellow;fg=black>Next steps</>:",
" * Install the site: https://www.drupal.org/docs/8/modules/apigee-developer-portal-kickstart/get-started-with-kickstart",
" * Read the guide: https://www.drupal.org/docs/8/modules/apigee-developer-portal-kickstart",
" * Report issues : https://github.com/apigee/apigee-devportal-kickstart-drupal/issues"
]
},
"enable-patching": true,
"patches": {
"drupal/core": {
"Support entities that are neither content nor config entities":"https://www.drupal.org/files/issues/2020-12-02/3042467-50.patch"
},
"drupal/jsonapi_extras":{
"JSON APIS EXTRAS BULK PATCH": "https://www.drupal.org/files/issues/2024-06-07/add-enable-disable-all-buttons--2896799--32.patch",
"Jsonapi_extra installation issue due to 3042467-50.patch": "https://github.com/apigee/apigee-devportal-kickstart-drupal/files/9189452/patch.569-1.txt"
}
},
"patchLevel": {
"drupal/core": "-p2"
}
},
"scripts": {
"quick-start": [
"composer install",
"php web/core/scripts/drupal quick-start apigee_devportal_kickstart"
]
}
}