-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
84 lines (84 loc) · 2.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "netzmacht/contao-leaflet-metamodels",
"description": "Metamodels layer for the Leaflet maps integration in Contao CMS",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"maps",
"leaflet",
"metamodels"
],
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/netzmacht/contao-leaflet-metamodels/issues",
"source": "https://github.com/netzmacht/contao-leaflet-metamodels"
},
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"contao-community-alliance/dc-general": "^2.1",
"contao-community-alliance/meta-palettes": "^1.11 || ^2.0",
"contao/core-bundle": "^4.9",
"doctrine/dbal": "^2.11 || ^3.3",
"menatwork/contao-multicolumnwizard-bundle": "^3.4.0",
"metamodels/attribute_select": "~2.2",
"metamodels/core": "^2.2",
"netzmacht/contao-leaflet-maps": "^3.2",
"netzmacht/contao-toolkit": "^3.7",
"netzmacht/php-javascript-builder": "^1.0.2",
"netzmacht/php-leaflet": "^1.0",
"symfony/config": "^4.4 || ^5.4",
"symfony/dependency-injection": "^4.4 || ^5.4",
"symfony/event-dispatcher": "^4.4 || ^5.4",
"symfony/http-kernel": "^4.4 || ^5.4",
"symfony/routing": "^4.4 || ^5.4",
"symfony/translation": "^4.4 || ^5.4",
"symfony/translation-contracts": "^1.1 || ^2.0"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
"phpcq/coding-standard": "^2.1",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"conflict": {
"contao/manager-plugin": "<2.1 || >= 3.0"
},
"autoload": {
"psr-4": {
"Netzmacht\\Contao\\Leaflet\\MetaModels\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": true,
"contao-community-alliance/composer-plugin": true,
"contao/manager-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "3.0.x-dev",
"dev-master": "2.0.x-dev"
},
"contao": {
"transifex": {
"languages_cto": "src/Resources/contao/languages",
"languages_tx": ".tx",
"prefix": "metamodels-",
"project": "contao-leaflet-maps"
}
},
"contao-manager-plugin": "Netzmacht\\Contao\\Leaflet\\MetaModels\\ContaoManager\\Plugin"
}
}