{
    "name": "saloonphp/laravel-plugin",
    "description": "The official Laravel plugin for Saloon",
    "license": "MIT",
    "type": "library",
    "keywords": [
        "saloonphp",
        "saloon",
        "sdk",
        "api",
        "api-integrations"
    ],
    "authors": [
        {
            "name": "Sam Carré",
            "email": "29132017+Sammyjo20@users.noreply.github.com",
            "role": "Developer"
        }
    ],
    "homepage": "https://github.com/saloonphp/laravel-plugin",
    "require": {
        "php": "^8.1",
        "illuminate/console": "^10.0 || ^11.0",
        "illuminate/support": "^10.0 || ^11.0",
        "saloonphp/saloon": "^3.5",
        "symfony/finder": "^6.4 || ^7.0"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3.48",
        "orchestra/testbench": "^8.21 || ^9.0",
        "pestphp/pest": "^2.32",
        "phpstan/phpstan": "^1.10.56"
    },
    "minimum-stability": "stable",
    "prefer-stable": true,
    "autoload": {
        "psr-4": {
            "Saloon\\Laravel\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Saloon\\Laravel\\Tests\\": "tests/"
        }
    },
    "config": {
        "allow-plugins": {
            "pestphp/pest-plugin": true
        },
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "aliases": {
                "Saloon": "Saloon\\Laravel\\Facades\\Saloon"
            },
            "providers": [
                "Saloon\\Laravel\\SaloonServiceProvider"
            ]
        }
    },
    "scripts": {
        "post-autoload-dump": [
            "@php ./vendor/bin/testbench package:discover --ansi"
        ],
        "fix-code": [
            "./vendor/bin/php-cs-fixer fix --allow-risky=yes"
        ],
        "pstan": [
            "./vendor/bin/phpstan analyse"
        ],
        "test": [
            "./vendor/bin/pest"
        ]
    }
}
