{
    "name": "peckphp/peck",
    "description": "Peck is a powerful CLI tool designed to identify pure wording or spelling (grammar) mistakes in your codebase.",
    "keywords": ["php", "codebase", "spelling", "checker"],
    "license": "MIT",
    "authors": [
        {
            "name": "Nuno Maduro",
            "email": "enunomaduro@gmail.com"
        }
    ],
    "require": {
        "php": "^8.2",
        "nunomaduro/termwind": "^1.17.0|^2.3.0",
        "symfony/console": "^6.4.17|^7.2.1",
        "symfony/finder": "^6.4.17|^7.2.2"
    },
    "require-dev": {
        "laravel/pint": "^1.20.0",
        "pestphp/pest": "^2.36|^3.7.4",
        "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.2.3",
        "phpstan/phpstan": "^1.12.16",
        "rector/rector": "^1.2.10",
        "symfony/var-dumper": "^7.2.0"
    },
    "autoload": {
        "psr-4": {
            "Peck\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "minimum-stability": "stable",
    "prefer-stable": true,
    "config": {
        "sort-packages": true,
        "preferred-install": "dist",
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    },
    "bin": [
        "bin/peck"
    ],
    "scripts": {
        "refacto": "rector",
        "lint": "pint",
        "test:refacto": "rector --dry-run",
        "test:typos": "peck",
        "test:lint": "pint --test",
        "test:types": "phpstan analyse --ansi",
        "test:unit": "pest --colors=always --coverage --min=88.9",
        "test": [
            "@test:refacto",
            "@test:lint",
            "@test:types",
            "@test:typos",
            "@test:unit"
        ]
    }
}
