2017-12-14 14:00:53 +01:00
|
|
|
{
|
|
|
|
"name": "saccas/mjml",
|
|
|
|
"description": "Mjml view using mjml over npm",
|
|
|
|
"type": "typo3-cms-extension",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"homepage": "https://mjml.io",
|
|
|
|
"license": ["GPL-2.0+"],
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Saccas\\Mjml\\": "Classes/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"require": {
|
|
|
|
"php": ">=7.0.0 <=7.2.99",
|
2017-12-14 22:30:49 +01:00
|
|
|
"typo3/cms-core": "^8.7.0",
|
|
|
|
"typo3/cms-form": "^8.7.0"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"squizlabs/php_codesniffer": "^3.2.0"
|
2017-12-14 14:00:53 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-12-14 22:30:49 +01:00
|
|
|
"lint": [
|
2017-12-14 22:42:05 +01:00
|
|
|
"! find Classes -type f -name \"*.php\" -exec php -d error_reporting=32767 -l {} \\; 2>&1 >&- | grep \"^\"",
|
|
|
|
"! find Tests -type f -name \"*.php\" -exec php -d error_reporting=32767 -l {} \\; 2>&1 >&- | grep \"^\""
|
|
|
|
],
|
|
|
|
"cgl": [
|
2017-12-14 22:30:49 +01:00
|
|
|
"./vendor/bin/phpcs"
|
|
|
|
],
|
2017-12-14 14:00:53 +01:00
|
|
|
"post-install-cmd": [
|
|
|
|
"npm install"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|