robmasters/maxmind-bundle

This Bundle provides services for integrating with Maxmind for Geolocation functionality

dev-master 2012-10-19 11:19 UTC

This package is not auto-updated.

Last update: 2024-05-05 00:53:13 UTC


README

This bundle provides a sandbox to showcase how to use various Form Types provided by the GenemuFormBundle

Installation

Step 1: Install the bundle

Add the following dependency to your composer.json file:

{
    "require": {
        "_some_packages": "...",

        "robmasters/maxmind-bundle": "dev-master"
    }
}

Step 2: Enable the bundle

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new RJM\Bundle\MaxmindBundle\RJMMaxmindBundle(),
    );
}