{
    "name": "getdkan/procrastinator",
    "description": "Library to define jobs and run them...most likely later.",
    "license": "GPL-3.0-or-later",
    "type": "library",
    "authors": [
        {
            "name": "fmizzell",
            "email": "fmizzell.dev@gmail.com"
        }
    ],
    "require": {
        "php": ">7.3 <8.4",
        "ext-json": "*",
        "getdkan/contracts": "^1.1.3"
    },
    "require-dev": {
        "phpunit/phpunit": ">8.5.14 <10.0.0",
        "rector/rector": "@stable",
        "squizlabs/php_codesniffer": "^3.7",
        "symfony/phpunit-bridge": "^7.0"
    },
    "autoload": {
        "psr-4": {
            "Procrastinator\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ProcrastinatorTest\\": "test"
        }
    },
    "config": {
        "sort-packages": true
    },
    "scripts": {
        "phpcbf": "./vendor/bin/phpcbf",
        "phpcs": "./vendor/bin/phpcs",
        "rector": "./vendor/bin/rector process",
        "rector-dry-run": "./vendor/bin/rector process --dry-run",
        "test": "./vendor/bin/phpunit --testsuite all"
    }
}
