forked from eastslopestudio/craft-sites-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 788 Bytes
/
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": "eastslopestudio/craft3-sites-field",
"description": "Craft 3 Field type that allows the selection of Craft sites.",
"type": "craft-plugin",
"version": "1.0.4",
"license": "MIT",
"authors": [
{
"name": "East Slope Studio",
"email": "[email protected]",
"homepage": "https://eastslope.studio"
}
],
"keywords": [
"craft",
"cms",
"craftcms",
"sites",
"field"
],
"support": {
"email": "[email protected]"
},
"require": {
"craftcms/cms": "^3.0.0 || ^4.0.0"
},
"autoload": {
"psr-4": {
"eastslopestudio\\sitesfield\\": "src/"
}
},
"extra": {
"name": "Sites Field",
"handle": "sites-field",
"schemaVersion": "0.0.1",
"hasCpSettings": false,
"hasCpSection": false,
"class": "eastslopestudio\\sitesfield\\Sites"
}
}