-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
47 lines (46 loc) · 1.16 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": "ether/simplemap",
"description": "A beautifully simple Map field type for Craft CMS",
"type": "craft-plugin",
"license": "proprietary",
"minimum-stability": "dev",
"require": {
"craftcms/cms": "^5.0.0",
"mapkit/jwt": "^1.1.2",
"geoip2/geoip2": "~2.0",
"guzzlehttp/guzzle": "^6.3.3|^7.2.0",
"what3words/w3w-php-wrapper": "3.*",
"ext-openssl": "*",
"ext-json": "*",
"ext-zlib": "*",
"php": "^8.2"
},
"require-dev": {
"craftcms/wp-import": "dev-main"
},
"autoload": {
"psr-4": {
"ether\\simplemap\\": "src/"
}
},
"support": {
"email": "[email protected]",
"docs": "https://docs.ethercreative.co.uk/maps",
"source": "https://github.com/ethercreative/simplemap",
"issues": "https://github.com/ethercreative/simplemap/issues"
},
"extra": {
"handle": "simplemap",
"name": "Maps",
"developer": "Ether Creative",
"developerUrl": "https://ethercreative.co.uk",
"class": "ether\\simplemap\\SimpleMap",
"schemaVersion": "3.4.2"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}