-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 1.04 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
{
"name": "dmhendricks/carbon-field-select-multiple",
"description": "A custom multiple select field for Carbon Fields with optional Select2 support.",
"keywords": ["wordpress", "carbon-field", "carbon-field-select-multiple", "select", "multiple", "dropdown", "select2"],
"homepage": "https://github.com/dmhendricks/carbon-field-select-multiple",
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Daniel M. Hendricks",
"homepage": "https://danhendricks.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/dmhendricks/carbon-field-select-multiple/issues/",
"wiki": "https://github.com/dmhendricks/carbon-field-select-multiple/wiki/",
"source": "https://github.com/dmhendricks/carbon-field-select-multiple/"
},
"require": {
"htmlburger/carbon-fields": "^2.0"
},
"autoload": {
"files": [
"field.php"
],
"psr-4": {
"Carbon_Field_Select_Multiple\\": "core/"
}
}
}