composer.json 917 字节
{
    "name": "globalso/email",
    "type": "project",
    "description": "邮件管理",
    "license": "MIT",
    "require": {
        "php": "^8.0.2",
        "ext-pdo": "*",
        "ext-redis": "*",
        "ext-mbstring": "*",
        "ext-json": "*",
        "ext-iconv": "*",
        "ext-imap": "*",
        "phpmailer/phpmailer": "^6.7"
    },
    "require-dev": {

    },
    "autoload": {
        "psr-4": {
            "Model\\": "model/",
            "Controller\\": "controller/",
            "Lib\\": "lib/"
        },
        "files": [
            "config.php",
            "function.php"
        ]
    },
    "scripts": {

    },
    "config": {
        "optimize-autoloader": true,
        "preferred-install": "dist",
        "sort-packages": true,
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    },
    "minimum-stability": "stable",
    "prefer-stable": true
}