{
    "name": "spatie/laravel-comments",
    "description": "Associate comments and reactions with Eloquent models",
    "keywords": [
        "spatie",
        "laravel",
        "laravel-comments"
    ],
    "homepage": "https://github.com/spatie/laravel-comments",
    "authors": [
        {
            "name": "Freek Van der Herten",
            "email": "freek@spatie.be",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^8.2",
        "illuminate/contracts": "^10.0|^11.0",
        "spatie/laravel-package-tools": "^1.9.2",
        "spatie/once": "^3.0",
        "symfony/html-sanitizer": "^6.1"
    },
    "require-dev": {
        "nunomaduro/collision": "^6.0|^7.0|^8.0",
        "larastan/larastan": "^2.9",
        "orchestra/testbench": "^7.0|^8.0|^9.0",
        "pestphp/pest": "^2.34",
        "pestphp/pest-plugin-laravel": "^2.4",
        "phpstan/extension-installer": "^1.4",
        "phpstan/phpstan-deprecation-rules": "^1.2",
        "phpstan/phpstan-phpunit": "^1.4",
        "spatie/laravel-markdown": "^2.5",
        "spatie/laravel-ray": "^1.37",
        "spatie/pest-plugin-snapshots": "^2.1"
    },
    "autoload": {
        "psr-4": {
            "Spatie\\Comments\\": "src",
            "Spatie\\Comments\\Database\\Factories\\": "database/factories"
        }
    },
    "suggest": {
        "spatie/laravel-markdown": "Required to convert markdown to HTML"
    },
    "autoload-dev": {
        "psr-4": {
            "Spatie\\Comments\\Tests\\": "tests"
        }
    },
    "scripts": {
        "analyse": "vendor/bin/phpstan analyse",
        "baseline": "vendor/bin/phpstan --generate-baseline",

        "test": "vendor/bin/pest",
        "test-coverage": "vendor/bin/pest coverage"
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "phpstan/extension-installer": true,
            "pestphp/pest-plugin": true
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "Spatie\\Comments\\CommentsServiceProvider"
            ],
            "aliases": {
                "Comments": "Spatie\\Comments\\Facades\\Comments"
            }
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
