Download the PHP package mydaniel/laravel-geolocation without Composer

On this page you can find all versions of the php package mydaniel/laravel-geolocation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-geolocation

Laravel GeoLocation

Latest Version on Packagist Total Downloads License

A powerful, flexible, and multi-driver geolocation package for Laravel. It provides a simple yet robust way to retrieve geographical information for an IP address from various services.

This package is designed to be highly extensible and resilient, with built-in support for caching, fallback drivers, and an elegant, fluent API.

Features

Installation

You can install the package via Composer:

Next, publish the configuration file using the vendor:publish command:

If you plan to use the MaxMind driver, you should also publish the database file. The package includes a placeholder GeoLite2 database.

Configuration

After publishing, the configuration file will be located at config/geolocation.php. Here you can define your default driver and configure each service.

Driver Configuration

Set your default driver and API keys in your .env file.

Cache Configuration

Caching is enabled by default. You can configure the cache settings in config/geolocation.php or via .env variables.

Usage

The package provides a simple and expressive API. Use the GeoLocation facade to perform lookups.

Basic Lookup

The Location Object

The locate method returns a MyDaniel\GeoLocation\Location object, which has the following getters:

Calculating Distance

You can easily calculate the distance between two locations using the distanceTo method.

Checking Cache Status

You can check if the result was retrieved from the cache.

Using a Specific Driver

You can use a specific driver on the fly, overriding the default driver from your config file.

Artisan Commands

The package includes two helpful Artisan commands.

Locate an IP

To quickly test a lookup from your terminal:

Clear the Geolocation Cache

This command will clear only the cache entries created by this package by flushing the geolocation tag.

Extending the Package

You can easily add your own custom driver.

  1. Create your driver class and implement the MyDaniel\GeoLocation\Contracts\GeolocationDriver interface.
  2. Register your driver in the boot method of a service provider (e.g., app/Providers/AppServiceProvider.php) using the extend method.
  1. Set your new driver in the config/geolocation.php file or your .env file: GEOLOCATION_DRIVER=my_driver.

Contributing

Contributions are welcome! Please feel free to fork the repository and submit a pull request.

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-geolocation with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1|^8.2|^8.3|^8.4
illuminate/support Version ^10.0|^11.0|^12.0
illuminate/http Version ^10.0|^11.0|^12.0
illuminate/cache Version ^10.0|^11.0|^12.0
illuminate/console Version ^10.0|^11.0|^12.0
geoip2/geoip2 Version ~2.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mydaniel/laravel-geolocation contains the following files

Loading the files please wait ....