{
    "name": "support/helpdesk",
    "description": "A self-hosted, rebrandable PHP technical support helpdesk with ticketing, knowledge base, and email piping.",
    "type": "project",
    "license": "MIT",
    "require": {
        "php": ">=8.1",
        "ext-pdo": "*",
        "ext-pdo_sqlite": "*",
        "ext-mbstring": "*",
        "ext-fileinfo": "*",
        "ext-json": "*",
        "twig/twig": "^3.8",
        "phpmailer/phpmailer": "^6.9",
        "webklex/php-imap": "^5.6",
        "vlucas/phpdotenv": "^5.6",
        "ezyang/htmlpurifier": "^4.17",
        "league/html-to-markdown": "^5.1",
        "ramsey/uuid": "^4.7"
    },
    "autoload": {
        "psr-4": {
            "Support\\": "src/"
        },
        "files": [
            "src/helpers.php"
        ]
    },
    "scripts": {
        "install-app": "php bin/install.php",
        "fetch-mail": "php bin/fetch-mail.php",
        "serve": "php -S localhost:8000 -t public"
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {}
    }
}
