Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-artemkin committed Dec 27, 2023
1 parent 5761154 commit 38037e8
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Geolite2

База данных, содержащая информацию о городах.

# Установка

Используйте [composer](https://getcomposer.org/) для установки.

composer.json:
```json
{
"repositories":[
{
"url":"https://github.com/topvisor/geolite2.git",
"type":"git"
}
],
"require": {
"topvisor/geolite2": "~1.0.0"
}
}
```

# Пример использования базы данных для поиска информации о городе по ip

```php
var_dump(Topvisor\Geolite2\Geolite2::city($ip));
```

Информация, полученная о городе по $ip, будет выведена на экран.

# Зависимости библиотеки

* "geoip2/geoip2": "~2.0"

# Базовые методы

* city(string $ip) - получить объект GeoIp2\Model\City, содержащий информацию о городе, по ip, который в нем расположен

0 comments on commit 38037e8

Please sign in to comment.