-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.21 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
{
"name": "evoluted/craft-countryselect",
"description": "Country select field type.",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"country select"
],
"support": {
"docs": "https://github.com/EvolutedNewMedia/craft-countryselect/blob/main/README.md",
"issues": "https://github.com/EvolutedNewMedia/craft-countryselect/issues"
},
"license": "MIT",
"authors": [
{
"name": "Evoluted New Media",
"homepage": "https://github.com/EvolutedNewMedia"
},
{
"name": "Rick Mills",
"homepage": "https://github.com/rickmills"
},
{
"name": "Luke Youell",
"homepage": "https://github.com/lukeyouell"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"evoluted\\countryselect\\": "src/"
}
},
"extra": {
"name": "Country Select",
"handle": "country-select",
"hasCpSettings": false,
"hasCpSection": false,
"class": "evoluted\\countryselect\\CountrySelect"
}
}