forked from OS2Forms/os2forms8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
127 lines (127 loc) · 4.34 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
{
"name": "drupal-composer/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=7.1",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal/bootstrap": "^3.21",
"drupal/config_entity_revisions": "1.7.0",
"drupal/console": "^1.0.2",
"drupal/core": "^8.9",
"drupal/core-composer-scaffold": "^8.9",
"drupal/devel": "^4.1",
"drupal/fontyourface": "^3.2",
"drupal/header_and_footer_scripts": "^2.2",
"drupal/ldap": "^3.0@beta",
"drupal/migrate_tools": "^5.0",
"drupal/migrate_upgrade": "^3.2",
"drupal/permissions_by_term": "2.25",
"drupal/queue_mail": "^1.3",
"drupal/queue_ui": "^2.1",
"drupal/restui": "^1.20",
"drupal/simple_ldap": "^1.0@alpha",
"drupal/straw": "^1.3",
"drupal/telephone_validation": "^2.2",
"drupal/webform_analysis": "^1.0@beta",
"drupal/webform_composite": "^1.0@RC",
"drupal/webform_migrate": "^1.2",
"drupal/webform_node_element": "^1.1",
"drupal/webform_scheduled_tasks": "^2.0",
"drupal/webform_views": "^5.0@alpha",
"drush/drush": "^9.0.0",
"os2core/os2core": "^1.0",
"os2forms/os2forms": "^2.5",
"os2forms/os2forms_egbolig": "dev-master",
"os2forms/os2forms_forloeb": "^1.3",
"os2forms/os2forms_forloeb_profile": "^1.0",
"os2web/os2web_logging": "dev-master",
"vlucas/phpdotenv": "^5.1",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": 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"
},
"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/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
},
"locations": {
"web-root": "web/"
}
},
"enable-patching": true,
"patcher": {
"force-reset": true
},
"patches": {
"drupal/webform": {
"Add support for Set to state": "./patches/add-set-to-state-3159806-2-modified-5.19.patch"
},
"drupal/webform_migrate": {
"Set to support. Checkbox condition fixes": "./patches/setto-and-checkboxes-condition-fix-onlyD7.patch"
},
"drupal/queue_mail": {
"Admin interface to see queued mail": "https://www.drupal.org/files/issues/2020-06-30/3096917-ui-queue-mail-moderate-5.patch"
},
"drupal/smtp": {
"Duplicated Attachments using webforms": "https://www.drupal.org/files/issues/2020-06-18/smtp-2995290-17.patch"
}
}
}
}