2017-12-14 14:00:53 +01:00
|
|
|
{
|
|
|
|
"name": "saccas/mjml",
|
|
|
|
"description": "Mjml view using mjml over npm",
|
|
|
|
"type": "typo3-cms-extension",
|
|
|
|
"homepage": "https://mjml.io",
|
|
|
|
"license": ["GPL-2.0+"],
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Saccas\\Mjml\\": "Classes/"
|
|
|
|
}
|
|
|
|
},
|
2017-12-14 23:06:08 +01:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Saccas\\Mjml\\Tests\\": "Tests/"
|
|
|
|
}
|
|
|
|
},
|
2017-12-14 14:00:53 +01:00
|
|
|
"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": {
|
2017-12-14 23:06:08 +01:00
|
|
|
"squizlabs/php_codesniffer": "^3.2.0",
|
|
|
|
"typo3/cms": "^8.7.0",
|
|
|
|
"typo3/testing-framework": "^1.2.2"
|
|
|
|
},
|
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 23:06:08 +01:00
|
|
|
"test": [
|
2017-12-16 11:41:45 +01:00
|
|
|
"TYPO3_PATH_ROOT=web ./vendor/bin/phpunit"
|
2017-12-14 23:06:08 +01:00
|
|
|
],
|
2017-12-21 15:30:52 +01:00
|
|
|
"post-install-cmd": [
|
2017-12-21 15:36:49 +01:00
|
|
|
"npm install"
|
2017-12-14 14:00:53 +01:00
|
|
|
]
|
2017-12-15 21:46:24 +01:00
|
|
|
},
|
|
|
|
"replace": {
|
|
|
|
"mjml": "self.version",
|
|
|
|
"typo3-ter/mjml": "self.version"
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"typo3/cms": {
|
|
|
|
"extension-key": "mjml",
|
|
|
|
"cms-package-dir": "{$vendor-dir}/typo3/cms",
|
|
|
|
"web-dir": "web"
|
|
|
|
}
|
2017-12-14 14:00:53 +01:00
|
|
|
}
|
|
|
|
}
|