{
    "name": "willvincent/laravel-rateable",
    "description": "Allows multiple models to be rated with a fivestar like system.",
    "keywords": [
        "laravel",
        "rateable",
        "rating",
        "vote",
        "fivestar",
        "laravel 8",
        "laravel 9"
    ],
    "homepage": "https://github.com/willvincent/laravel-rateable",
    "license": "MIT",
    "authors": [
        {
            "name": "Will Vincent",
            "email": "tcindie@gmail.com",
            "homepage": "https://willvincent.com"
        }
    ],
    "require": {
        "php": "^8.0",
        "illuminate/support": "^8.0 || ^9.0|^10.0",
        "illuminate/database": "^8.53 || ^9.0|^10.0"
    },
    "require-dev": {
        "orchestra/testbench": "^6.23 || ^7.0|^8.0",
        "phpunit/phpunit": "^9.5"
    },
    "autoload": {
        "psr-4": {
            "willvincent\\Rateable\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "willvincent\\Rateable\\Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit",
        "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "willvincent\\Rateable\\RateableServiceProvider"
            ]
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
