-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 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
32
33
34
35
36
37
38
39
40
{
"name": "codemonauts/craft-customizable-radio-buttons-field",
"description": "Craft CMS plugin to add a radio buttons field, customizable with CSS classes, icons, images and text.",
"version": "2.0.0",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"field",
"buttons"
],
"license": "MIT",
"authors": [
{
"name": "codemonauts",
"homepage": "https://codemonauts.com"
}
],
"support": {
"source": "https://github.com/codemonauts/craft-customizable-radio-buttons-field",
"docs": "https://github.com/codemonauts/craft-customizable-radio-buttons-field/blob/master/README.md",
"issues": "https://github.com/codemonauts/craft-customizable-radio-buttons-field/issues"
},
"require": {
"craftcms/cms": "^4.0.0-alpha",
"php": "^8.0"
},
"autoload": {
"psr-4": {
"codemonauts\\buttons\\": "src/"
}
},
"extra": {
"handle": "buttons",
"class": "codemonauts\\buttons\\Buttons",
"name": "Customizable Radio Buttons Field"
}
}