-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
36 lines (36 loc) · 974 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
{
"name": "mattrothenberg/statamic-mapbox-address",
"description": "A Mapbox autocomplete dropdown fieldtype for the Statamic Control Panel",
"license": "MIT",
"type": "statamic-addon",
"autoload": {
"psr-4": {
"Mattrothenberg\\StatamicMapboxAddress\\": "src"
}
},
"require": {
"php": "^7.3|^8.0",
"statamic/cms": "^3.0|^4.0|^5.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"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}