{
    "name": "coconutcraig/laravel-postmark",
    "type": "library",
    "description": "Laravel package for sending mail via the Postmark API",
    "keywords": [
        "wildbit",
        "postmark",
        "laravel",
        "mail",
        "email",
        "coconutcraig"
    ],
    "homepage": "https://github.com/craigpaul/laravel-postmark",
    "license": "MIT",
    "authors": [
        {
            "name": "Craig Paul",
            "email": "craig.paul@coconutcalendar.com",
            "homepage": "https://coconutcalendar.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^7.1.3 || ^8.0",
        "ext-json": "*",
        "guzzlehttp/guzzle": "^6.3 || ^7.0",
        "illuminate/mail": "^5.5 || ^6.0 || ^7.0 || ^8.0",
        "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0"
    },
    "require-dev": {
        "orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0",
        "phpunit/phpunit": "^6.0 || ^7.0 || ^8.0 || ^9.0"
    },
    "suggest": {
        "mvdnbrk/postmark-inbound": "Allows you to process Postmark Inbound Webhooks."
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "branch-alias": {
            "dev-master": "3.0-dev"
        },
        "laravel": {
            "providers": [
                "Coconuts\\Mail\\PostmarkServiceProvider"
            ]
        }
    },
    "autoload": {
        "psr-4": {
            "Coconuts\\Mail\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Coconuts\\Mail\\Tests\\": "tests"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "scripts": {
        "test": "vendor/bin/phpunit"
    }
}
