allebb/distical

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "ballen/distical",
    "description": "A distance (Lat/Long) calculation library for PHP",
    "type": "library",
    "keywords": ["latitude", "longditude", "lat", "lng", "long", "calculator", "gps", "mapping", "distance"],
    "license": "MIT",
    "homepage": "http://github.com/allebb/distical",
    "authors": [
        {
            "name": "ballen",
            "email": "ballen@bobbyallen.me",
            "homepage": "http://bobbyallen.me",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=7.3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.0"
    },
    "autoload": {
        "psr-4": {
            "Ballen\\Distical\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    }
}