robmasters / maxmind-bundle
This Bundle provides services for integrating with Maxmind for Geolocation functionality
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
Requires (Dev)
- sensio/framework-extra-bundle: >=2.0,<2.3-dev
This package is not auto-updated.
Last update: 2025-01-26 04:44:16 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(), ); }