ArmorLab/imap

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "armorlab/imap",
    "description": "Library for manage mailboxes and emails in PHP",
    "keywords": [
        "PHP",
        "mailbox",
        "IMAP",
        "mailbox manager",
        "receive emails"
    ],
    "homepage": "https://github.com/ArmorLab/imap",
    "license": "MIT",
    "type": "library",
    "authors": [
        {
            "name": "Paweł Poloczek",
            "homepage": "https://poloczek.me",
            "email": "pawel@poloczek.me"
        }
    ],
    "config": {
        "sort-packages": true
    },
    "require": {
        "php": ">=7.4",
        "ext-iconv": "*",
        "ext-mbstring": "*"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^2.16",
        "phpstan/phpstan": "^0.12.19",
        "phpunit/phpunit": "^9.1",
        "squizlabs/php_codesniffer": "^3.5"
    },
    "autoload": {
        "psr-4": {"ArmorLab\\": "src/ArmorLab/"}
    }
}