{
    "name": "ashallendesign/short-url",
    "description": "A Laravel package for creating shortened URLs for your web apps.",
    "type": "library",
    "homepage": "https://github.com/ash-jc-allen/short-url",
    "license": "MIT",
    "authors": [
        {
            "name": "Ash Allen",
            "email": "mail@ashallendesign.co.uk"
        }
    ],
    "keywords": [
        "ashallendesign",
        "short-urls",
        "url-shortener",
        "laravel",
        "laravel-package"
    ],
    "require": {
        "php": "^8.1",
        "nesbot/carbon": "^2.0|^3.0",
        "illuminate/container": "^10.0|^11.0",
        "illuminate/database": "^10.0|^11.0",
        "hashids/hashids": "^4.0|^5.0",
        "whichbrowser/parser": "^2.1",
        "ashallendesign/laravel-config-validator": "^2.6.1"
    },
    "require-dev": {
        "mockery/mockery": "^1.0",
        "orchestra/testbench": "^8.0|^9.0",
        "phpunit/phpunit": "^10.0|^11.0",
        "larastan/larastan": "^2.0",
        "pestphp/pest-plugin-laravel": "^2.3"
    },
    "autoload": {
        "psr-4": {
            "AshAllenDesign\\ShortURL\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "AshAllenDesign\\ShortURL\\Tests\\": "tests/"
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "AshAllenDesign\\ShortURL\\Providers\\ShortURLProvider"
            ],
            "aliases": {
                "ShortURL": "AshAllenDesign\\ShortURL\\Facades\\ShortURL"
            }
        }
    },
    "scripts": {
        "test": "vendor/bin/pest"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    }
}
