-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
153 lines (153 loc) · 4.85 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "axelerant/contrib-tracker",
"description": "Contribution Tracker for Organizations",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "hussainweb",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "path",
"url": "web/modules/custom/ct_drupal"
},
{
"type": "path",
"url": "web/modules/custom/ct_github"
}
],
"require": {
"php": ">=8.2",
"axelerant/ct_drupal": "*",
"axelerant/ct_github": "*",
"composer/installers": "^2.1",
"cweagans/composer-patches": "^1.7.0",
"drupal/address": "^2.0",
"drupal/admin_toolbar": "^3.0.0",
"drupal/better_exposed_filters": "^7.0",
"drupal/ckeditor": "^1.0",
"drupal/cookies": "^1.2",
"drupal/core": "^10.1",
"drupal/core-composer-scaffold": "^10.1",
"drupal/do_username": "^2.0",
"drupal/field_permissions": "^1.0.0",
"drupal/fixed_block_content": "^1.1",
"drupal/flag": "^4.0",
"drupal/geocoder": "^4.0",
"drupal/geofield": "^1.0",
"drupal/gin": "^4.0.0@alpha",
"drupal/google_tag": "^2.0",
"drupal/inline_entity_form": "^3.0",
"drupal/new_relic_rpm": "^2.0",
"drupal/raven": "^6.0",
"drupal/redis": "^1.4.0",
"drupal/select2": "^1.13",
"drupal/slack": "^1.2.0",
"drupal/social_auth": "^4.0",
"drupal/social_auth_google": "^4.0",
"drupal/stable": "^2.0",
"drupal/twig_tweak": "^3.1",
"drush/drush": "^13.0",
"geocoder-php/nominatim-provider": "^5.2",
"npm-asset/jquery-ui-touch-punch": "^0.2.3",
"oomphinc/composer-installers-extender": "^2.0",
"platformsh/config-reader": "^3.0.0",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"axelerant/db-docker": "^1.1",
"axelerant/drupal-quality-checker": "^1.4",
"behat/mink": "^1.10",
"behat/mink-browserkit-driver": "^2.1",
"phpunit/phpunit": "^9.0",
"symfony/browser-kit": "^7.0",
"weitzman/drupal-test-traits": "^2.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"apcu-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"phpro/grumphp-shim": true,
"axelerant/db-docker": true,
"oomphinc/composer-installers-extender": true,
"php-http/discovery": true,
"axelerant/drupal-quality-checker": true
}
},
"autoload": {
"files": ["load.environment.php"]
},
"scripts": {},
"extra": {
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
},
"installer-types": ["npm-asset", "bower-asset"],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": [
"type:drupal-library",
"vendor:npm-asset",
"vendor:bower-asset"
],
"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-scaffold": {
"locations": {
"web-root": "web/"
},
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
}
},
"dbdocker": {
"docker-base": {
"base-flavor": "ddev",
"image": "drud/ddev-dbserver-mariadb-10.6:v1.19.5",
"user": "db",
"password": "db",
"database": "db"
}
},
"idp": {
"metadata": {
"annotations": {}
},
"spec": {
"type": "website",
"lifecycle": "production",
"owner": "group:default/axelerant-coe-tech-internal"
}
}
}
}