38 lines
760 B
JSON
38 lines
760 B
JSON
{
|
|
"name": "qferr/mjml-php",
|
|
"description": "A simple PHP library to render MJML to HTML.",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Quentin",
|
|
"email": "qferrer@outook.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"ext-curl": "*",
|
|
"ext-json": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^8.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Qferrer\\Mjml\\" : "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Qferrer\\Tests\\Mjml\\" : "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit tests/"
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.2.30"
|
|
}
|
|
}
|
|
}
|