PHPackages                             oselya/ip-geolocation-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. oselya/ip-geolocation-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

oselya/ip-geolocation-bundle
============================

Symfony IP geolocation bundle

0.0.5(1y ago)22.5kMITPHPPHP &gt;=8.3

Since Apr 25Pushed 1y ago2 watchersCompare

[ Source](https://github.com/oselya/ip-geolocation-bundle)[ Packagist](https://packagist.org/packages/oselya/ip-geolocation-bundle)[ RSS](/packages/oselya-ip-geolocation-bundle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (12)Versions (6)Used By (0)

Symfony IP geolocation bundle
=============================

[](#symfony-ip-geolocation-bundle)

[![License](https://camo.githubusercontent.com/17e9757cbb55c60de819f19cd32613d4fc879fe79b5e6d9e8fbbb534328adee2/68747470733a2f2f696d672e736869656c64732e696f2f6475622f6c2f766962652d642e737667)](https://github.com/oselya/ip-geolocation-bundle/blob/main/LICENSE) [![workflow](https://github.com/oselya/ip-geolocation-bundle/actions/workflows/php.yml/badge.svg)](https://github.com/oselya/ip-geolocation-bundle/actions/workflows/php.yml/badge.svg)

Install

```
composer req oselya/ip-geolocation-bundle
```

Before we get started, there is a small amount of configuration needed

```
# app/config/ip_geolocation.yaml

ip_geolocation:
  cache_ttl: -1
  maxmind:
    city_path: 'GeoLite2-City.mmdb'
  ip_api_com:
    access_key: 'qwerty'
```

Cli command

```
$ bin/console app:ip:location 92.253.204.162
+----------------+-----------+---------+-----------------+-----------------+
| IP             | Continent | Country | Latitude        | Longitude       |
+----------------+-----------+---------+-----------------+-----------------+
| 92.253.204.162 | EU        | UA      | 48.342449188232 | 24.575370788574 |
+----------------+-----------+---------+-----------------+-----------------+
```

Service

```
