-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 842 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 842 Bytes
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
{
"name": "brainsum/jquery_ui_datepicker",
"description": "Datetime fieldwidget using jQuery UI datepicker",
"type": "drupal-module",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "mhavelant",
"email": "mhavelant@brainsum.com"
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"php": ">=7.4",
"drupal/core": ">=8.8"
},
"extra": {
"patches": {
"drupal/core": {
"Datetime form element cannot validate when using a format without seconds": "https://www.drupal.org/files/issues/2019-07-24/drupal-datetime_form_element_cannot_validate_without_seconds-2723159-53.patch"
}
}
}
}