{
    "name": "thewilhelms/calendar-control-center",
    "description": "Private multi-calendar conflict detection, digest, alerting, and busy-mirroring control center.",
    "type": "project",
    "license": "proprietary",
    "require": {
        "php": "^8.2",
        "ext-curl": "*",
        "ext-dom": "*",
        "ext-json": "*",
        "ext-mbstring": "*",
        "ext-pdo": "*",
        "ext-pdo_mysql": "*",
        "ext-sodium": "*",
        "sabre/vobject": "^5.0",
        "symfony/dotenv": "^7.4",
        "symfony/mailer": "^7.4",
        "symfony/mime": "^7.4"
    },
    "require-dev": {
        "phpunit/phpunit": "^11.5"
    },
    "autoload": {
        "psr-4": {
            "Wccc\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Wccc\\Tests\\": "tests/"
        }
    },
    "config": {
        "optimize-autoloader": true,
        "sort-packages": true
    },
    "scripts": {
        "lint": "find src bin public tests -name '*.php' -print0 | xargs -0 -n1 php -l",
        "test": "phpunit",
        "smoke": "php tests/smoke.php",
        "check": [
            "@lint",
            "@smoke",
            "@test"
        ]
    }
}
