Code Monkey home page Code Monkey logo

contao-google-maps-bundle's Introduction

Contao Google Maps Bundle

This bundle adds google maps integration to Contao. It's based on ivory/google-map.

Features

  • introduces a simple Contao backend entity to configure your Google Map and overlays (markers, info windows, ...)
  • frontend module and content element
  • insert tag and twig function
  • easy contao command based migration tool for delahaye/dlh_googlemaps (courtesy to delahaye!)
  • responsive support (mobile first), provide responsive configurations that will update the map upon reaching the value (greater than breakpoint)
  • support for List bundle and Reader bundle
  • support for hofff/contao-consent-bridge

Setup and usage

Setup

  1. Install with contao manager or composer and update database afterwards

    composer require heimrichhannot/contao-google-maps-bundle
    
  2. Optional: If you have already google maps created with delahaye/dlh_googlemaps refer to the section "Migrating from dlh_googlemaps".

  3. Set your Google API key (capable of Google Maps and Google Static Maps) if not already done in one of the following places (ascending priority):

    • global Contao settings (tl_settings)
    • page root (tl_page)
    • Google Maps config (tl_google_map)

Usage

  1. Create a Google Map using the corresponding menu entry in Contao on the left.
  2. Optional: create markers with the created google map configuration (markers are child entities of a map)
  3. Now you can integrate the map in your website using one of the following build-in ways:
    • Content element
    • Module
    • Insert tag (see below)
    • Twig function (see below)
    • render a list as map, list config element or reader config element

List and reader bundle

For both list and reader bundle a config element is provided to add maps to the items.

For lists you also get the option to render the complete list as map. In your list configuration, check the renderItemsAsMap option and do the additional configuration. You can use or adapt the bundled default template: list_google_maps_default.html.twig and list_item_google_maps_default.html.twig.

Typical, your list items don't have the correct fields added and filled to be used as markers on a maps. So you need to implement an event listener for the GoogleMapsPrepareExternalItemEvent and create or update an overlay object that can be displayed on the map.

class GoogleMapsSubscriber implements EventSubscriberInterface {

    public static function getSubscribedEvents() {
        return [GoogleMapsPrepareExternalItemEvent::class => 'onGoogleMapsPrepareExternalItemEvent',];
    }

    public function onGoogleMapsPrepareExternalItemEvent(GoogleMapsPrepareExternalItemEvent $event): void
    {
        if (!$event->getConfigModel() instanceof ListConfigModel) {
            return;
        }
        
        $item = (object)$event->getItemData();
        
        $overlay = new OverlayModel();
        $overlay->title = $item->headline;
        $overlay->type = Overlay::TYPE_MARKER;
        if ($item->coordX && $item->coordX) {
            $overlay->positioningMode = Overlay::POSITIONING_MODE_COORDINATE;
            $overlay->positioningLat = trim($item->coordX);
            $overlay->positioningLng = trim($item->coordX);
        } elseif (!empty($item->address)) {
            $overlay->positioningMode = Overlay::POSITIONING_MODE_STATIC_ADDRESS;
            $overlay->positioningAddress = $item->address;
        } else {
            $event->setOverlayModel(null);
            return;
        }
        $overlay->markerType = Overlay::MARKER_TYPE_SIMPLE;
        $overlay->clickEvent = Overlay::CLICK_EVENT_INFO_WINDOW;
        $overlay->infoWindowText = '<p><b>'.$item->headline.'</b></p>';
        $overlay->published='1';
        $event->setOverlayModel($overlay);
    }
}

Migrating from dlh_googlemaps

Although we cannot guarantee to fully migrate your existing dlh_googlemaps instances, you will nevertheless have a point to start from. Think of it as a 95% migration ;-)

Migrating is as simple as running vendor/bin/contao-console huh:google-maps:migrate-dlh from your contao root dir. Your dlh google maps are not changed by this process, only new instances in tl_google_map and tl_google_map_overlay are created out of the existing legacy data.

Insert Tags

Name Arguments Example
google_map ID of the tl_google_map instance {{google_map::1}}
google_map_html ID of the tl_google_map instance {{google_map_html::1}}
google_map_css ID of the tl_google_map instance {{google_map_css::1}}
google_map_js ID of the tl_google_map instance {{google_map_js::1}}

Twig functions

Name Arguments Example
google_map ID of the tl_google_map instance {{ google_map(1) }}
google_map_html ID of the tl_google_map instance {{ google_map_html(1) }}
google_map_css ID of the tl_google_map instance {{ google_map_css(1) }}
google_map_js ID of the tl_google_map instance {{ google_map_js(1) }}

TODO

  • Overlay types:
    • polyline
    • circle
    • rectangle
    • ground_overlay

Documentation

Developer documentation

contao-google-maps-bundle's People

Contributors

defcon0 avatar dmolineus avatar fritzmg avatar jarekyaro avatar koertho avatar mirkogleibe avatar qzminski avatar rabauss avatar salteax avatar vvohh avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

contao-google-maps-bundle's Issues

add support for Contao Consent

Hey, we would provide a PR to support our commercial extension Contao Consent, so that the website editor just need to choose a service provider for prevent loading Google Maps without any consent given.

Is that ok for you?

Polygone

Hi, wollte nur fragen, ob in nächster Zeit die Umsetzung der Darstellung von Polygonen geplant ist? Ich hätte einen Kunden, der dies gerne nutzen würde. Falls ich mit einem monetären Beitrag helfen kann, gebt mir gerne Bescheid.

Google Map Karte wird nicht angezeigt

Hallo,

ich habe die Erweiterung heimrichhannot/contao-google-maps-bundle in der Version 1.4.1 unter Contao 4.4 installiert und konfiguriert. Auf der Webseite wird die Karte nicht ausgegeben egal ob das Bundle als Modul oder Inhaltselement eingebunden wird. Der HTML-Code ist in der Webseite vorhanden, lediglich die Überschrift wird auf der Seite sichtbar dargestellt. Daraufhin hatte ich versucht eine der Beta-Versionen zu installieren, aber jedes mal wird wird die Installation mit nachfolgender Fehlermeldung abgebrochen.
Woran liegt es, dass die Karte nicht angezeigt wird und wie kann ich dies beheben?
Außerdem, wieso bricht jedes mal die Installation der Beta-Version ab?
Danke!

Gruß
Thomas

$ /usr/bin/php7.2 -q -d allow_url_fopen=1 -d memory_limit=2048M -d suhosin.executor.include.whitelist="phar://,http://,https://" /is/htdocs/wp1163178_BIQN3TMV92/www.musikverein-hirschzell.de/contaosub/web/contao-manager.phar.php composer require heimrichhannot/contao-google-maps-bundle=^2.0@beta --no-suggest --no-update --no-scripts --prefer-stable --sort-packages --no-ansi --no-interaction

Using config.component-dir has been deprecated. Please use extra.contao-component-dir instead.
/is/htdocs/wp1163178_BIQN3TMV92/www.musikverein-hirschzell.de/contaosub/composer.json has been updated

Process terminated with exit code 0

Result: OK

Resolving dependencies using Composer Cloud v2.4.3

[7.0MiB/0.24s] Loading composer repositories with package information
[7.4MiB/0.30s] Updating dependencies
[3252.4MiB/59.14s] Your requirements could not be resolved to an installable set of packages.
[3252.4MiB/59.15s]
Problem 1
- Conclusion: don't install contao/core-bundle 4.10.0
- Conclusion: don't install contao/newsletter-bundle 4.4.49
- Conclusion: don't install heimrichhannot/contao-google-maps-bundle 2.0.0-beta7
- Conclusion: don't install heimrichhannot/contao-google-maps-bundle 2.0.0-beta6
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta2 requires contao/core-bundle ^4.9 -> satisfiable by contao/core-bundle[4.10.0, 4.9.0, 4.9.1, 4.9.2, 4.9.3, 4.9.4, 4.9.5].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta1 requires contao/core-bundle ^4.9 -> satisfiable by contao/core-bundle[4.10.0, 4.9.0, 4.9.1, 4.9.2, 4.9.3, 4.9.4, 4.9.5].
- Can only install one of: contao/core-bundle[4.9.0, 4.4.49].
- Can only install one of: contao/core-bundle[4.9.1, 4.4.49].
- Can only install one of: contao/core-bundle[4.9.2, 4.4.49].
- Can only install one of: contao/core-bundle[4.9.3, 4.4.49].
- Can only install one of: contao/core-bundle[4.9.4, 4.4.49].
- Can only install one of: contao/core-bundle[4.9.5, 4.4.49].
- contao/newsletter-bundle 4.4.49 requires contao/core-bundle 4.4.49 -> satisfiable by contao/core-bundle[4.4.49].
- Conclusion: don't install contao/core-bundle 4.4.49
- Conclusion: don't install twig/twig v1.42.5|install heimrichhannot/contao-google-maps-bundle 2.0.0-beta1|install heimrichhannot/contao-google-maps-bundle 2.0.0-beta2
- Conclusion: don't install twig/twig v1.43.0|install heimrichhannot/contao-google-maps-bundle 2.0.0-beta1|install heimrichhannot/contao-google-maps-bundle 2.0.0-beta2
- Conclusion: don't install twig/twig v1.43.1|install heimrichhannot/contao-google-maps-bundle 2.0.0-beta1|install heimrichhannot/contao-google-maps-bundle 2.0.0-beta2
- Conclusion: don't install twig/twig v1.42.4
- Conclusion: don't install heimrichhannot/contao-google-maps-bundle 2.0.0-beta5
- Conclusion: don't install twig/twig v1.42.3
- Installation request for kriswallsmith/assetic (locked at v1.4.0) -> satisfiable by kriswallsmith/assetic[v1.4.0].
- Installation request for symfony/mime (locked at v5.0.8) -> satisfiable by symfony/mime[v5.0.8].
- Installation request for contao/newsletter-bundle (locked at 4.4.49, required as ^4.4) -> satisfiable by contao/newsletter-bundle[4.4.49].
- Conclusion: don't install heimrichhannot/contao-google-maps-bundle 2.0.0-beta4
- contao/core-bundle 4.4.49 requires twig/twig ^1.26 -> satisfiable by twig/twig[v1.43.1, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4, v1.35.0, v1.35.1, v1.35.2, v1.35.3, v1.35.4, v1.36.0, v1.37.0, v1.37.1, v1.38.0, v1.38.1, v1.38.2, v1.38.3, v1.38.4, v1.39.0, v1.39.1, v1.40.0, v1.40.1, v1.41.0, v1.42.0, v1.42.1, v1.42.2, v1.42.3, v1.42.4, v1.42.5, v1.43.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.26.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.26.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.27.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.28.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.28.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.28.2].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.29.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.30.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.31.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.32.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.33.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.33.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.33.2].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.34.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.34.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.34.2].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.34.3].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.34.4].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.35.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.35.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.35.2].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.35.3].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.35.4].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.36.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.37.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.37.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.38.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.38.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.38.2].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.38.3].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.38.4].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.39.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.39.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.40.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.40.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.41.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.42.0].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.42.1].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.42.2].
- heimrichhannot/contao-google-maps-bundle 2.0.0-beta3 conflicts with twig/twig[v1.43.1].
- Installation request for heimrichhannot/contao-google-maps-bundle ^2.0@beta -> satisfiable by heimrichhannot/contao-google-maps-bundle[2.0.0-beta1, 2.0.0-beta2, 2.0.0-beta3, 2.0.0-beta4, 2.0.0-beta5, 2.0.0-beta6, 2.0.0-beta7].

[3252.5MiB/59.15s] Running update with --no-dev does not mean require-dev is ignored, it just means the packages will not be installed. If dev requirements are blocking the update you have to resolve those problems.
[535.5MiB/61.60s] Memory usage: 535.5MB (peak: 3256.83MB), time: 61.61s.
[535.5MiB/61.61s] Finished Composer Cloud resolving.

Cloud Job ID Fg3sGLl1mlOGLJqLxegKBx2ZVBNIMJsbj0To4o3Gsgo4ZK8XrXThU8aTz0bWQKUnjjrmJQLDtNExll514EmFROoJ4Jyxih0lskhTS2B failed


Der Hintergrundprozess wurde unerwartet beendet

add support for Contao Consent

Hey, we would provide a PR to support our commercial extension Contao Consent, so that the website editor just need to choose a service provider for prevent loading Google Maps without any consent given.

Is that ok for you?

Add messages.en.yml

Description
Please add the English translation for messages.de.yml to your package...
Routenplaner zu Ihrer Adresse: -> Route planner to your address:

Styles werden nicht angenommen.

Hallo,

ich möchte der Google Map ein paar neue Farben geben. Dazu gibt es ja in der Kartenkonfiguration ein eigenes Feld.

Den JSON-Code habe ich von https://mapstyle.withgoogle.com/ genommen, das Feld meckert auch nicht über Fehler, aber es ändert sich im Frontend nichts an der Karte.

Muss ich den Code noch bearbeiten? Fehlt noch eine Einstellung?

Ein Ausschnitt des Codes:
Bildschirmfoto 2021-09-04 um 19 14 19

VG
Nicole

make conto 4.7 install possible

at the moment all your bundles are not working for 4.7 because they ty to use old symfony. Would be glad if i can test your bundles in contao 4.7

Fehler bei der Installation (1.4.1 oder 2.0)

Hallo, leider erhalte ich bei der Installation folgende Fehler und kann die Erweiterung nicht nutzen. Was kann ich hier tun?

$ /usr/bin/php73 -q /home/www/contao_live/web/contao-manager.phar.php composer require heimrichhannot/contao-google-maps-bundle --no-suggest --no-update --no-scripts --prefer-stable --sort-packages --no-ansi --no-interaction

Using version dev-master for heimrichhannot/contao-google-maps-bundle
/home/www/contao_live/composer.json has been updated

Process terminated with exit code 0
Result: OK

Resolving dependencies using Composer Cloud v2.2.7

[7.3MiB/0.22s] Loading composer repositories with package information
[7.7MiB/0.29s] Updating dependencies
[3365.6MiB/42.88s] Your requirements could not be resolved to an installable set of packages.
[3365.6MiB/42.88s]
Problem 1
- Conclusion: don't install symfony/console v4.4.8
- anisimov/google-map-bundle 3.0.0 requires egeloen/google-map ^2.0 -> satisfiable by egeloen/google-map[2.0.0, 2.0.1, 2.0.2, 2.0.x-dev].
- anisimov/google-map-bundle 3.0.1 requires egeloen/google-map ^2.0.2 -> satisfiable by egeloen/google-map[2.0.2, 2.0.x-dev].
- anisimov/google-map-bundle 3.0.2 requires egeloen/google-map ^2.0.2 -> satisfiable by egeloen/google-map[2.0.2, 2.0.x-dev].
- anisimov/google-map-bundle 3.0.3 requires egeloen/google-map ^2.0.2 -> satisfiable by egeloen/google-map[2.0.2, 2.0.x-dev].
- egeloen/google-map 2.0.0 requires symfony/event-dispatcher ^2.7|^3.0 -> satisfiable by symfony/event-dispatcher[2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.51, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.50, v2.8.52, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9].
- egeloen/google-map 2.0.1 requires symfony/event-dispatcher ^2.7|^3.0 -> satisfiable by symfony/event-dispatcher[2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.51, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.50, v2.8.52, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9].
- egeloen/google-map 2.0.2 requires symfony/event-dispatcher ^2.7|^3.0 -> satisfiable by symfony/event-dispatcher[2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.51, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.50, v2.8.52, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9].
- egeloen/google-map 2.0.x-dev requires symfony/event-dispatcher ^2.7|^3.0 -> satisfiable by symfony/event-dispatcher[2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.51, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.50, v2.8.52, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9].
- anisimov/google-map 2.0.2 requires symfony/event-dispatcher ^2.7|^3.0 -> satisfiable by symfony/event-dispatcher[2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.51, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.50, v2.8.52, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9].
- symfony/event-dispatcher 3.4.x-dev conflicts with symfony/console[v4.4.8].
- symfony/event-dispatcher v3.4.0 conflicts with symfony/console[v4.4.8].
- symfony/event-dispatcher ...
- Installation request for symfony/console (locked at v4.4.8) -> satisfiable by symfony/console[v4.4.8].
- Conclusion: don't install symfony/inflector v5.0.8|install anisimov/google-map-bundle 3.0.0|install anisimov/google-map-bundle 3.0.1|install anisimov/google-map-bundle 3.0.2|install anisimov/google-map-bundle 3.0.3|install anisimov/google-map 2.0.2
- Installation request for heimrichhannot/contao-google-maps-bundle dev-master -> satisfiable by heimrichhannot/contao-google-maps-bundle[dev-master].
- symfony/property-access 3.1.x-dev requires symfony/inflector ~3.1 -> satisfiable by symfony/inflector[3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9].
- symfony/property-access ...
- Can only install one of: symfony/inflector[3.1.x-dev, v5.0.8].
- Can only install one of: symfony/inflector...
- Installation request for symfony/inflector (locked at v5.0.8) -> satisfiable by symfony/inflector[v5.0.8].
- Conclusion: don't install symfony/property-access v5.0.8|install symfony/property-access 3.1.x-dev|install symfony/property-access 3.2.x-dev|install symfony/property-access 3.3.x-dev|install symfony/property-access 3.4.x-dev|install symfony/property-access 4.0.x-dev|install symfony/property-access 4.1.x-dev|install symfony/property-access 4.2.x-dev|install symfony/property-access 4.3.x-dev|install symfony/property-access v3.1.0|install symfony/property-access v3.1.0-BETA1|install symfony/property-access v3.1.0-RC1|install symfony/property-access v3.1.1|install symfony/property-access v3.1.10|install symfony/property-access v3.1.2|install symfony/property-access v3.1.3|install symfony/property-access v3.1.4|install symfony/property-access v3.1.5|install symfony/property-access v3.1.6|install symfony/property-access v3.1.7|install symfony/property-access v3.1.8|install symfony/property-access v3.1.9|install symfony/property-access v3.2.0|install symfony/property-access v3.2.0-BETA1|install symfony/property-access v3.2.0-RC1|install symfony/property-access v3.2.0-RC2|install symfony/property-access v3.2.1|install symfony/property-access v3.2.10|install symfony/property-access v3.2.11|install symfony/property-access v3.2.12|install symfony/property-access v3.2.13|install symfony/property-access v3.2.14|install symfony/property-access v3.2.2|install symfony/property-access v3.2.3|install symfony/property-access v3.2.4|install symfony/property-access v3.2.5|install symfony/property-access v3.2.6|install symfony/property-access v3.2.7|install symfony/property-access v3.2.8|install symfony/property-access v3.2.9|install symfony/property-access v3.3.0|install symfony/property-access v3.3.0-BETA1|install symfony/property-access v3.3.0-RC1|install symfony/property-access v3.3.1|install symfony/property-access v3.3.10|install symfony/property-access v3.3.11|install symfony/property-access v3.3.12|install symfony/property-access v3.3.13|install symfony/property-access v3.3.14|install symfony/property-access v3.3.15|install symfony/property-access v3.3.16|install symfony/property-access v3.3.17|install symfony/property-access v3.3.18|install symfony/property-access v3.3.2|install symfony/property-access v3.3.3|install symfony/property-access v3.3.4|install symfony/property-access v3.3.5|install symfony/property-access v3.3.6|install symfony/property-access v3.3.7|install symfony/property-access v3.3.8|install symfony/property-access v3.3.9|install symfony/property-access v3.4.0|install symfony/property-access v3.4.0-BETA1|install symfony/property-access v3.4.0-BETA2|install symfony/property-access v3.4.0-BETA3|install symfony/property-access v3.4.0-BETA4|install symfony/property-access v3.4.0-RC1|install symfony/property-access v3.4.0-RC2|install symfony/property-access v3.4.1|install symfony/property-access v3.4.10|install symfony/property-access v3.4.11|install symfony/property-access v3.4.12|install symfony/property-access v3.4.13|install symfony/property-access v3.4.14|install symfony/property-access v3.4.15|install symfony/property-access v3.4.16|install symfony/property-access v3.4.17|install symfony/property-access v3.4.18|install symfony/property-access v3.4.19|install symfony/property-access v3.4.2|install symfony/property-access v3.4.20|install symfony/property-access v3.4.21|install symfony/property-access v3.4.22|install symfony/property-access v3.4.23|install symfony/property-access v3.4.24|install symfony/property-access v3.4.25|install symfony/property-access v3.4.26|install symfony/property-access v3.4.27|install symfony/property-access v3.4.28|install symfony/property-access v3.4.29|install symfony/property-access v3.4.3|install symfony/property-access v3.4.30|install symfony/property-access v3.4.31|install symfony/property-access v3.4.32|install symfony/property-access v3.4.33|install symfony/property-access v3.4.34|install symfony/property-access v3.4.35|install symfony/property-access v3.4.36|install symfony/property-access v3.4.37|install symfony/property-access v3.4.38|install symfony/property-access v3.4.39|install symfony/property-access v3.4.4|install symfony/property-access v3.4.40|install symfony/property-access v3.4.5|install symfony/property-access v3.4.6|install symfony/property-access v3.4.7|install symfony/property-access v3.4.8|install symfony/property-access v3.4.9|install symfony/property-access v4.0.0|install symfony/property-access v4.0.0-BETA1|install symfony/property-access v4.0.0-BETA2|install symfony/property-access v4.0.0-BETA3|install symfony/property-access v4.0.0-BETA4|install symfony/property-access v4.0.0-RC1|install symfony/property-access v4.0.0-RC2|install symfony/property-access v4.0.1|install symfony/property-access v4.0.10|install symfony/property-access v4.0.11|install symfony/property-access v4.0.12|install symfony/property-access v4.0.13|install symfony/property-access v4.0.14|install symfony/property-access v4.0.15|install symfony/property-access v4.0.2|install symfony/property-access v4.0.3|install symfony/property-access v4.0.4|install symfony/property-access v4.0.5|install symfony/property-access v4.0.6|install symfony/property-access v4.0.7|install symfony/property-access v4.0.8|install symfony/property-access v4.0.9|install symfony/property-access v4.1.0|install symfony/property-access v4.1.0-BETA1|install symfony/property-access v4.1.0-BETA2|install symfony/property-access v4.1.0-BETA3|install symfony/property-access v4.1.1|install symfony/property-access v4.1.10|install symfony/property-access v4.1.11|install symfony/property-access v4.1.12|install symfony/property-access v4.1.2|install symfony/property-access v4.1.3|install symfony/property-access v4.1.4|install symfony/property-access v4.1.5|install symfony/property-access v4.1.6|install symfony/property-access v4.1.7|install symfony/property-access v4.1.8|install symfony/property-access v4.1.9|install symfony/property-access v4.2.0|install symfony/property-access v4.2.0-BETA1|install symfony/property-access v4.2.0-BETA2|install symfony/property-access v4.2.0-RC1|install symfony/property-access v4.2.1|install symfony/property-access v4.2.10|install symfony/property-access v4.2.11|install symfony/property-access v4.2.12|install symfony/property-access v4.2.2|install symfony/property-access v4.2.3|install symfony/property-access v4.2.4|install symfony/property-access v4.2.5|install symfony/property-access v4.2.6|install symfony/property-access v4.2.7|install symfony/property-access v4.2.8|install symfony/property-access v4.2.9|install symfony/property-access v4.3.0|install symfony/property-access v4.3.0-BETA1|install symfony/property-access v4.3.0-BETA2|install symfony/property-access v4.3.0-RC1|install symfony/property-access v4.3.1|install symfony/property-access v4.3.10|install symfony/property-access v4.3.11|install symfony/property-access v4.3.2|install symfony/property-access v4.3.3|install symfony/property-access v4.3.4|install symfony/property-access v4.3.5|install symfony/property-access v4.3.6|install symfony/property-access v4.3.7|install symfony/property-access v4.3.8|install symfony/property-access v4.3.9|install anisimov/google-map-bundle 3.0.0|install anisimov/google-map-bundle 3.0.1|install anisimov/google-map-bundle 3.0.2|install anisimov/google-map-bundle 3.0.3|install anisimov/google-map 2.0.2
- heimrichhannot/contao-google-maps-bundle dev-master requires anisimov/google-map-bundle ^3.0 -> satisfiable by anisimov/google-map-bundle[3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.x-dev].
- anisimov/google-map-bundle 3.0.x-dev requires anisimov/google-map ^2.0.2 -> satisfiable by anisimov/google-map[2.0.2, 2.0.3, 2.0.4, 2.0.x-dev].
- anisimov/google-map-bundle ...
- Can only install one of: symfony/property-access[2.8.x-dev, v5.0.8].
- Can only install one of: symfony/property-access...
- Installation request for symfony/property-access (locked at v5.0.8) -> satisfiable by symfony/property-access[v5.0.8].

[3366.4MiB/42.89s] Running update with --no-dev does not mean require-dev is ignored, it just means the packages will not be installed. If dev requirements are blocking the update you have to resolve those problems.
[591.9MiB/45.92s] Memory usage: 591.93MB (peak: 3368.7MB), time: 45.93s.
[591.9MiB/45.93s] Finished Composer Cloud resolving.

Cloud Job ID BXusXLgE1F3E9TNN0kkTISMYskdg7C7cCRvAH6PQiunMNQmyQ8B637kNEgRLKK4YXlA3owumAA535uzSzn2jx5s2WfxeXtJKqEtnA7SmzMaXH4pDbBL2GWZie7n0oVO failed


Der Hintergrundprozess wurde unerwartet beendet

Contao Benutzer nicht möglich ein Overlay zu kopieren

Erstmals Danke für die tolle Erweiterung.

Ich kann als normaler Contao BE-Benutzer (kein Admin) kein Google-Maps Overlay kopieren.
Not enough permissions to copy google_map_overlay item ID 7 to google_map_overlay archive ID .

Ohne mir den Code genauer angesehen zu haben, vermute ich, dass hier der Fehler liegt.
Input::get('pid') ist bei mir NULL

if (!\in_array(Input::get('pid'), $root)) {

Aktuell läuft bei mir eine Contao 4.9.24 mit PHP 8.0.

Contao 5 compability

Hi,

are there any plans to update the add-on in order to make it usable with Contao 5?

Contao 4.13 compatibility

Wird es bald eine Version für Contao 4.13 geben?

Meine Installationsversuche scheitern an 09:44:53 CRITICAL [console] Error thrown while running command "cache:warmup --env=prod --no-ansi". Message: "Class 'Twig_Extension' not found" ["exception" => Error { …},"command" => "cache:warmup --env=prod --no-ansi","message" => "Class 'Twig_Extension' not found"] und ich habe gesehen dass bei Packagist [contao/core-bundle]: ^4.9 steht.

Oder liegt der Fehler wo anders?

VG
Nicole

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.