-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.14 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
{
"name": "vaersaagod/locate",
"description": "Harness the power of the Google Autocomplete API inside Craft. Adds an autocomplete search box to Craft entries.",
"type": "craft-plugin",
"version": "4.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"locate",
"map",
"google-maps",
"proximity-search",
"address",
"locations"
],
"support": {
"docs": "https://github.com/vaersaagod/locate/blob/master/README.md",
"issues": "https://github.com/vaersaagod/locate/issues"
},
"license": "MIT",
"authors": [
{
"name": "Værsågod",
"homepage": "https://www.vaersaagod.no/"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"php": "^8.2.0"
},
"autoload": {
"psr-4": {
"vaersaagod\\locate\\": "src/"
}
},
"extra": {
"name": "Locate",
"handle": "locate",
"changelogUrl": "https://raw.githubusercontent.com/vaersaagod/locate/master/CHANGELOG.md",
"class": "vaersaagod\\locate\\Locate"
}
}