{
    "name": "fleetbase/laravel-mysql-spatial",
    "description": "MySQL spatial data types extension for Laravel x Fleetbase.",
    "version": "1.0.2",
    "scripts": {
        "lint": "php-cs-fixer fix -v",
        "test": "phpunit -c phpunit.xml.dist",
        "test:lint": "php-cs-fixer fix -v --dry-run",
        "test:types": "phpstan analyse --ansi --memory-limit=4G",
        "test:unit": "phpunit -c phpunit.xml.dist --testsuite unit",
        "test:integration": "phpunit -c phpunit.xml.dist --testsuite integration"
    },
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Joseph Estefane",
            "email": "estefanejoe@gmail.com"
        },
        {
            "name": "Fleetbase Pte Ltd",
            "email": "hello@fleetbase.io"
        }
    ],
    "require": {
        "php": "^8.0",
        "ext-pdo": "*",
        "ext-json": "*",
        "doctrine/dbal": "^3.5",
        "illuminate/contracts": "^9.0|^10.0",
        "illuminate/database": "^9.0|^10.0",
        "geo-io/wkb-parser": "^1.0",
        "jmikola/geojson": "^1.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^10.0.15",
        "laravel/laravel": "^10.0.4",
        "laravel/browser-kit-testing": "^7.0",
        "mockery/mockery": "^1.5",
        "friendsofphp/php-cs-fixer": "^3.34.1",
        "phpstan/phpstan": "^1.10.38"
    },
    "autoload": {
        "psr-4": {
            "Fleetbase\\LaravelMysqlSpatial\\": "src/"
        }
    },
    "autoload-dev" : {
        "classmap" : [
            "tests/Unit",
            "tests/Integration"
        ]
    },
    "extra": {
        "laravel": {
            "providers": [
                "Fleetbase\\LaravelMysqlSpatial\\SpatialServiceProvider"
            ]
        }
    }
}
