wishthis/vendor/qferr/mjml-php/composer.json

39 lines
760 B
JSON
Raw Normal View History

2022-02-28 14:16:41 +00:00
{
"name": "qferr/mjml-php",
2022-11-28 10:29:52 +00:00
"description": "A simple PHP library to render MJML to HTML.",
2022-02-28 14:16:41 +00:00
"type": "library",
2022-11-28 10:29:52 +00:00
"license": "MIT",
2022-02-28 14:16:41 +00:00
"authors": [
{
"name": "Quentin",
"email": "qferrer@outook.com"
}
],
"require": {
"php": ">=7.2",
2022-11-28 10:29:52 +00:00
"ext-curl": "*",
"ext-json": "*"
2022-02-28 14:16:41 +00:00
},
"require-dev": {
2022-11-28 10:29:52 +00:00
"phpunit/phpunit": "^8.5"
2022-02-28 14:16:41 +00:00
},
"autoload": {
"psr-4": {
2022-11-28 10:29:52 +00:00
"Qferrer\\Mjml\\" : "src/"
2022-02-28 14:16:41 +00:00
}
},
"autoload-dev": {
"psr-4": {
2022-11-28 10:29:52 +00:00
"Qferrer\\Tests\\Mjml\\" : "tests/"
}
},
"scripts": {
"test": "phpunit tests/"
},
"config": {
"platform": {
"php": "7.2.30"
2022-02-28 14:16:41 +00:00
}
}
}