-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
69 lines (69 loc) · 2.54 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
64
65
66
67
68
69
{
"name": "numero2/contao-storelocator",
"type": "contao-module",
"description": "Contao Plugin for managing stores (or in common address data) and providing a frontend-search based on geo data",
"license": "LGPL-3.0+",
"authors": [{
"name": "numero2 - Agentur für digitales Marketing GbR",
"homepage": "http://www.numero2.de"
}
],
"require": {
"contao/core-bundle": "^4.13 || ^5.0",
"doctrine/dbal": "^3.3",
"geocoder-php/google-maps-provider": "^4.6",
"psr/http-client": "^1.0",
"psr/log": "^1.1 || 2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/translation-contracts": "^2.3 || ^3.0",
"willdurand/geocoder": "^4.3"
},
"suggest": {
"geocoder-php/bing-maps-provider": "For use of Bing Maps as geocode provider",
"geocoder-php/here-provider": "For use of HERE Maps as geocode provider",
"geocoder-php/nominatim-provider": "For use of OpenStreetMap Nominatim as geocode provider",
"geocoder-php/open-cage-provider": "For use of OpenCage as geocode provider",
"numero2/contao-tags": "Allows the tagging of stores"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.4"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"extra": {
"contao-manager-plugin": "numero2\\StoreLocatorBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"numero2\\StoreLocatorBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"scripts": {
"depcheck": "@php vendor/bin/composer-dependency-analyser --config=depcheck.php"
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"php-http/discovery": false,
"contao/manager-plugin": false
}
}
}