-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
139 lines (139 loc) · 4.88 KB
/
composer.json
File metadata and controls
139 lines (139 loc) · 4.88 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "euf/drupal-project",
"description": "Project template for EUF Drupal 8/9/10 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org/"
},
{"type": "vcs", "url": "https://github.com/EuropeanUniversityFoundation/euf_bootstrap_sass/"},
{"type": "vcs", "url": "https://github.com/EuropeanUniversityFoundation/eu_funding/"},
{"type": "vcs", "url": "https://github.com/EuropeanUniversityFoundation/openid_connect_eufidp/"},
{"type": "vcs", "url": "https://github.com/EuropeanUniversityFoundation/openid_connect_myacademicid/"}
],
"require": {
"php": ">=7.2.24",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal/admin_toolbar": "^3.3",
"drupal/adminimal_admin_toolbar": "^1.11",
"drupal/adminimal_theme": "^1.5",
"drupal/better_exposed_filters": "^6.0",
"drupal/bootstrap_barrio": "~5.1.0",
"drupal/cookies": "^1.2",
"drupal/core-composer-scaffold": "~9.5.11",
"drupal/core-recommended": "~9.5.11",
"drupal/ctools": "^4.0",
"drupal/devel": "^5.1",
"drupal/devel_entity_updates": "^4.1",
"drupal/environment_indicator": "^4.0",
"drupal/field_defaults": "^2.0@alpha",
"drupal/field_group": "^3.4",
"drupal/jquery_ui": "^1.6",
"drupal/jquery_ui_accordion": "^2.0",
"drupal/jquery_ui_autocomplete": "^2.0",
"drupal/jquery_ui_menu": "^2.0",
"drupal/link_attributes": "^2.1",
"drupal/module_filter": "^4.0",
"drupal/noreqnewpass": "^1.2",
"drupal/openid_connect": "^1.0",
"drupal/pathauto": "^1.8",
"drupal/r4032login": "^2.0",
"drupal/restui": "^1.19",
"drupal/smtp": "^1.2",
"drupal/token": "^1.7",
"drupal/upgrade_status": "^3.18",
"drush/drush": "^11.0.0",
"euf/eu_funding": "^1.0@beta",
"euf/euf_bootstrap_sass": "^1.4",
"euf/openid_connect_eufidp": "^1.0@beta",
"euf/openid_connect_myacademicid": "^1.0@beta",
"npm-asset/jquery-ui-touch-punch": "^0.2.3",
"oomphinc/composer-installers-extender": "^2.0",
"vlucas/phpdotenv": "^4.0",
"webflo/drupal-finder": "^1.0.0",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"require-dev": {
"drupal/core-dev": "~9.5.11",
"phpspec/prophecy-phpunit": "^2",
"roave/security-advisories": "dev-master"
},
"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,
"oomphinc/composer-installers-extender": true,
"zaporylie/composer-drupal-optimizations": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": ["load.environment.php"]
},
"scripts": {
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-types": [
"npm-asset",
"bower-asset"
],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": [
"type:drupal-library",
"type:npm-asset",
"type:bower-asset"
],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"]
}
}
}