-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 2.86 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
{
"name": "droptica/droopler-project",
"description": "Project template for Droopler with Composer",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.droopler.com",
"support": {
"docs": "https://www.droopler.com/developers",
"issues": "https://www.drupal.org/project/issues/droopler?categories=All"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"composer/installers": "^1.2",
"droptica/droopler": "8.3.0.0",
"drupal/admin_toolbar": "^3.1",
"drupal/avatars": "^1.1",
"drupal/backup_migrate": "^5.0",
"drupal/better_exposed_filters": "^5.0@beta",
"drupal/config_sync": "^2.0@beta",
"drupal/console": "~1.0",
"drupal/core-composer-scaffold": "^9.0",
"drupal/core-recommended": "^9.0",
"drupal/entity_type_clone": "^1.7",
"drupal/eu_cookie_compliance": "^1.19",
"drupal/field_permissions": "^1.1",
"drupal/geofield": "^1.38",
"drupal/geofield_map": "^2.74",
"drupal/leaflet": "^2.1",
"drupal/leaflet_more_maps": "^2.1",
"drupal/mail_login": "^2.6",
"drupal/mailsystem": "^4.3",
"drupal/r4032login": "^2.1",
"drupal/recaptcha": "^3.0",
"drupal/responsive_views_grid": "^1.1",
"drupal/restui": "^1.20",
"drupal/simplelogin": "^6.0",
"drupal/unique_entity_title": "^1.2",
"drupal/url_restrictions": "^2.0",
"drush/drush": "^9.0 || ^10.0",
"oomphinc/composer-installers-extender": "^2.0",
"zaporylie/composer-drupal-optimizations": "^1.1"
},
"require-dev": {
"drupal/core-dev": "^9.0",
"drupal/devel": "^4.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library", "type:git", "type:bower-asset", "type:npm-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"]
}
}
}