| {
    "name": "slvler/cuttly",
    "description": "Cutt.ly API wrapper for Laravel",
    "keywords": [
        "cuttly",
        "laravel",
        "php"
    ],
    "homepage": "https://github.com/slvler/laravel-url-shortener",
    "license": "MIT",
    "type": "library",
    "authors": [
        {
            "name": "slvler",
            "email": "[email protected] "
        }
    ],
    "require": {
        "php": "^8.0.2",
        "guzzlehttp/guzzle": "^7.2",
        "illuminate/support": "^9.0"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3.6",
        "orchestra/testbench": "^7.0",
        "phpunit/phpunit": "^9.5.8"
    },
    "autoload": {
        "psr-4": {
            "Slvler\\Cuttly\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Slvler\\Cuttly\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit tests",
        "post-create-project-cmd": [
            "@php artisan key:generate --ansi"
        ]
    },
    "extra": {
        "laravel": {
            "providers": [
                "Slvler\\Cuttly\\CuttlyServiceProvider"
            ],
            "aliases": {
                "Cuttly": "Slvler\\Cuttly\\Facades\\Cuttly"
            }
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
 |