2014-12-27 22:58:58 +01:00
|
|
|
{
|
2017-10-05 15:25:58 +02:00
|
|
|
"name": "netzmacht/contao-leaflet-maps",
|
|
|
|
|
"description": "Contao Leaflet maps integration",
|
2022-02-21 17:13:53 +01:00
|
|
|
"license": "LGPL-3.0-or-later",
|
|
|
|
|
"type": "contao-bundle",
|
2017-10-05 15:25:58 +02:00
|
|
|
"keywords": [
|
|
|
|
|
"contao",
|
|
|
|
|
"maps",
|
|
|
|
|
"leaflet"
|
|
|
|
|
],
|
|
|
|
|
"authors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "David Molineus",
|
|
|
|
|
"email": "mail@netzmacht.de",
|
|
|
|
|
"homepage": "https://netzmacht.de",
|
|
|
|
|
"role": "Developer"
|
|
|
|
|
}
|
|
|
|
|
],
|
2022-02-21 17:13:53 +01:00
|
|
|
"support": {
|
|
|
|
|
"email": "mail@netzmacht.de",
|
|
|
|
|
"issues": "https://github.com/netzmacht/contao-leaflet-maps/issues",
|
|
|
|
|
"source": "https://github.com/netzmacht/contao-leaflet-maps",
|
|
|
|
|
"docs": "http://leaflet-maps-for-contao.readthedocs.org/"
|
|
|
|
|
},
|
2017-10-05 15:25:58 +02:00
|
|
|
"require": {
|
2022-02-22 09:52:12 +01:00
|
|
|
"php": "^7.1 || ^8.0",
|
2018-08-23 14:35:25 +02:00
|
|
|
"ext-json": "*",
|
|
|
|
|
"ext-pdo": "*",
|
2022-02-22 09:52:12 +01:00
|
|
|
"contao-community-alliance/meta-palettes": "^2.0",
|
2022-02-21 16:31:52 +01:00
|
|
|
"contao/core-bundle": "^4.9",
|
|
|
|
|
"doctrine/dbal": "^2.11 || ^3.0",
|
2022-02-22 09:52:12 +01:00
|
|
|
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
|
2019-02-13 12:01:42 +01:00
|
|
|
"netzmacht/contao-leaflet-geocode-widget": "^1.2",
|
2022-02-22 09:52:12 +01:00
|
|
|
"netzmacht/contao-leaflet-libraries": "^1.7.1.1",
|
2019-02-13 12:01:42 +01:00
|
|
|
"netzmacht/contao-page-context": "~1.0",
|
2022-02-21 16:37:54 +01:00
|
|
|
"netzmacht/contao-toolkit": "^3.7",
|
2019-02-13 12:01:42 +01:00
|
|
|
"netzmacht/php-javascript-builder": "^1.0",
|
|
|
|
|
"netzmacht/php-leaflet": "^1.1.0",
|
2023-02-20 10:35:00 +01:00
|
|
|
"symfony/cache-contracts": "^1.1 || ^2.0",
|
|
|
|
|
"symfony/config": "^4.4 || ^5.1",
|
|
|
|
|
"symfony/dependency-injection": "^4.4 || ^5.1",
|
|
|
|
|
"symfony/event-dispatcher": "^4.4 || ^5.1",
|
2022-02-21 16:31:52 +01:00
|
|
|
"symfony/event-dispatcher-contracts": "^1.1 || ^2.0",
|
2023-02-20 10:35:00 +01:00
|
|
|
"symfony/filesystem": "^4.4 || ^5.1",
|
|
|
|
|
"symfony/http-foundation": "^4.4 || ^5.1",
|
|
|
|
|
"symfony/http-kernel": "^4.4 || ^5.1",
|
|
|
|
|
"symfony/routing": "^4.4 || ^5.1",
|
|
|
|
|
"symfony/templating": "^4.4 || ^5.1 || ^6.2",
|
2022-02-22 09:52:12 +01:00
|
|
|
"symfony/translation-contracts": "^1.1 || ^2.0",
|
2023-02-20 10:35:00 +01:00
|
|
|
"symfony/twig-bundle": "^4.4 || ^5.1",
|
2022-02-21 16:31:52 +01:00
|
|
|
"twig/twig": "^2.0 || ^3.0"
|
2017-10-05 15:25:58 +02:00
|
|
|
},
|
|
|
|
|
"require-dev": {
|
2018-08-23 14:48:58 +02:00
|
|
|
"contao/manager-plugin": "^2.1",
|
2020-08-28 17:14:33 +02:00
|
|
|
"hofff/contao-consent-bridge": "^1.0",
|
2022-02-21 17:13:53 +01:00
|
|
|
"phpcq/coding-standard": "^2.1",
|
|
|
|
|
"phpcq/runner-bootstrap": "^1.0@dev"
|
2017-10-05 16:14:46 +02:00
|
|
|
},
|
2020-08-28 17:14:33 +02:00
|
|
|
"conflict": {
|
|
|
|
|
"hofff/contao-consent-bridge": "<1.0 || >= 2.0"
|
|
|
|
|
},
|
2019-02-13 12:01:42 +01:00
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"Netzmacht\\Contao\\Leaflet\\": "src/"
|
2014-12-27 22:58:58 +01:00
|
|
|
}
|
2019-02-13 12:01:42 +01:00
|
|
|
},
|
2022-02-21 16:31:52 +01:00
|
|
|
"config": {
|
|
|
|
|
"allow-plugins": {
|
|
|
|
|
"contao-components/installer": true,
|
|
|
|
|
"contao/manager-plugin": true,
|
2023-02-20 10:35:00 +01:00
|
|
|
"contao-community-alliance/composer-plugin": true,
|
|
|
|
|
"php-http/discovery": true
|
2022-02-21 16:31:52 +01:00
|
|
|
}
|
2022-02-21 17:13:53 +01:00
|
|
|
},
|
|
|
|
|
"extra": {
|
|
|
|
|
"branch-alias": {
|
|
|
|
|
"dev-develop": "3.3.x-dev",
|
|
|
|
|
"dev-master": "3.2.x-dev",
|
|
|
|
|
"dev-support/2.x": "2.0.x-dev"
|
|
|
|
|
},
|
|
|
|
|
"contao": {
|
|
|
|
|
"transifex": {
|
|
|
|
|
"languages_cto": "src/Bundle/Resources/contao/languages",
|
|
|
|
|
"languages_tx": ".tx",
|
|
|
|
|
"prefix": "core-",
|
|
|
|
|
"project": "contao-leaflet-maps"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"contao-manager-plugin": "Netzmacht\\Contao\\Leaflet\\Bundle\\ContaoManager\\Plugin"
|
2017-10-05 15:25:58 +02:00
|
|
|
}
|
2014-12-27 22:58:58 +01:00
|
|
|
}
|