-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
32 lines (32 loc) · 893 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
{
"name": "mattrothenberg/statamic-mapbox-address",
"description": "A Mapbox autocomplete dropdown fieldtype for the Statamic Control Panel",
"license": "MIT",
"version": "0.5.1",
"type": "statamic-addon",
"autoload": {
"psr-4": {
"Mattrothenberg\\StatamicMapboxAddress\\": "src"
}
},
"require": {
"php": "^7.3|^8.0",
"statamic/cms": "^3.0",
"pixelfear/composer-dist-plugin": "^0.1"
},
"extra": {
"download-dist": {
"url": "https://github.com/mattrothenberg/statamic-mapbox-address/releases/download/{$version}/dist.tar.gz",
"path": "dist"
},
"statamic": {
"name": "Statamic Mapbox Address",
"description": "A Mapbox autocomplete dropdown fieldtype for the Statamic Control Panel"
},
"laravel": {
"providers": [
"Mattrothenberg\\StatamicMapboxAddress\\ServiceProvider"
]
}
}
}