{
    "name": "wendelladriel/laravel-lift",
    "description": "Take your Eloquent Models to the next level",
    "type": "library",
    "keywords": [
        "laravel",
        "eloquent",
        "model",
        "attributes",
        "casts",
        "validation"
    ],
    "license": "MIT",
    "autoload": {
        "psr-4": {
            "WendellAdriel\\Lift\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "support": {
        "issues": "https://github.com/WendellAdriel/laravel-lift/issues",
        "source": "https://github.com/WendellAdriel/laravel-lift"
    },
    "authors": [
        {
            "name": "Wendell Adriel",
            "email": "wendelladriel.ti@gmail.com"
        }
    ],
    "require": {
        "php": "^8.2",
        "illuminate/database": "^11.0|^12.0|^13.0",
        "illuminate/support": "^11.0|^12.0|^13.0",
        "illuminate/validation": "^11.0|^12.0|^13.0"
    },
    "require-dev": {
        "larastan/larastan": "^3.9",
        "laravel/pint": "^1.27",
        "orchestra/testbench": "^9.0|^10.0|^11.0",
        "pestphp/pest": "^3.0|^4.0",
        "pestphp/pest-plugin-faker": "^3.0|^4.0",
        "phpstan/phpstan": "^2.1"
    },
    "scripts": {
        "lint": "pint",
        "test:lint": "pint --test",
        "test:unit": "./vendor/bin/pest --order-by random",
        "test:static": "phpstan analyse --memory-limit 1G",
        "test": [
            "@test:lint",
            "@test:unit",
            "@test:static"
        ]
    },
    "extra": {
        "laravel": {
            "providers": [
                "WendellAdriel\\Lift\\Providers\\LiftServiceProvider"
            ]
        }
    },
    "config": {
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
