{
    "name": "fedeisas/laravel-mail-css-inliner",
    "description": "Inline the CSS of your HTML emails using Laravel",
    "license": "MIT",
    "keywords": ["laravel", "mailer", "css"],
    "authors": [
        {
            "name": "Fede Isas",
            "email": "fedeisas@hotmail.com"
        }
    ],
    "require": {
        "php": ">=5.4.0",
        "illuminate/support": "~5.0",
        "tijsverkoyen/css-to-inline-styles": "~2.0"
    },
    "require-dev" : {
        "phpunit/phpunit": "~5.7",
        "squizlabs/php_codesniffer": "^2.3",
        "swiftmailer/swiftmailer": "~5.0"
    },
    "autoload": {
        "psr-4": {
            "Fedeisas\\LaravelMailCssInliner\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "phpunit",
        "check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
        "fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "Fedeisas\\LaravelMailCssInliner\\LaravelMailCssInlinerServiceProvider"
            ]
        }
    }
}
