-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "netzmacht/contao-leaflet-geocode-widget",
"description": "Geocode widget based on Leaflet",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"geocode",
"contao",
"widget",
"leaflet"
],
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/netzmacht/contao-leaflet-geocode-widget/issues",
"source": "https://github.com/netzmacht/contao-leaflet-geocode-widget"
},
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.13 || ^5.0",
"netzmacht/contao-leaflet-libraries": "~1.3",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"doctrine/coding-standard": "^9.0",
"phpcq/runner-bootstrap": "1.x-dev",
"phpspec/phpspec": "^6.3.0 || ^7.0"
},
"suggest": {
"netzmacht/contao-leaflet-maps": "Leaflet Maps for Contao"
},
"autoload": {
"psr-4": {
"Netzmacht\\Contao\\Leaflet\\GeocodeWidget\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao-community-alliance/composer-plugin": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "1.5.x-dev",
"dev-master": "1.4.x-dev"
},
"contao-manager-plugin": "Netzmacht\\Contao\\Leaflet\\GeocodeWidget\\ContaoManager\\Plugin"
}
}