madforwebs/google-maps-bundle

This bundle provides a googlemapsbundle for symfony2

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master 2021-08-01 14:49 UTC

This package is auto-updated.

Last update: 2024-04-29 04:59:42 UTC


README

The GoogleMapsBundle means easy-to-implement and feature-rich maps in your Symfony application!

Installation

Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require madforwebs/google-maps-bundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Enable the Bundle

Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:

// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new MadForWebs\GoogleMapsBundle\GoogleMapsBundle(),
        );

        // ...
    }

    // ...
}