MailConfigChecker/composer.json

57 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2023-12-08 14:31:53 +01:00
{
2023-12-09 13:32:01 +01:00
"name": "d3/mailconfigchecker",
"description": "Mail configuration check tool",
2023-12-08 14:31:53 +01:00
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop",
2023-12-08 14:37:49 +01:00
"d3",
2023-12-14 08:46:34 +01:00
"E-mail",
"configuration",
"SMTP",
"phpMailer",
"SPF",
2024-06-05 08:46:54 +02:00
"DMARC",
2023-12-08 14:37:49 +01:00
"testing"
2023-12-08 14:31:53 +01:00
],
"authors": [
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "https://www.d3data.de",
"role": "Owner"
}
],
"support": {
"email": "support@shopmodule.com"
},
"homepage": "https://www.oxidmodule.com/",
"license": [
"GPL-3.0-or-later"
],
"require": {
2024-05-31 16:02:53 +02:00
"php": "^8",
"oxid-esales/oxideshop-ce": "7.0 - 7.1",
2023-12-08 15:16:48 +01:00
"pear/net_smtp": "^1.11",
2023-12-14 09:08:45 +01:00
"mika56/spfcheck": "^2.1.1",
2024-06-04 14:37:41 +02:00
"d3/mailauthenticationcheck": "^0.1.0",
2023-12-08 15:16:48 +01:00
"beberlei/assert": "^3.3"
2023-12-08 14:31:53 +01:00
},
"require-dev": {
2023-12-14 11:06:27 +01:00
"php": "^8",
2023-12-08 14:31:53 +01:00
"friendsofphp/php-cs-fixer": "^3.9",
"phpstan/phpstan": "^1.8",
"boxblinkracer/phpunuhi": "^1.12"
},
"autoload": {
"psr-4": {
2024-05-31 16:02:53 +02:00
"D3\\MailConfigChecker\\": ""
2023-12-08 14:31:53 +01:00
}
},
"scripts": {
2023-12-14 08:09:47 +01:00
"phpstan": "./vendor/bin/phpstan --configuration=./vendor/d3/mailconfigchecker/phpstan.neon",
"phpunuhi": "./vendor/bin/phpunuhi --configuration=vendor/d3/mailconfigchecker/phpunuhi.xml validate"
2023-12-08 14:31:53 +01:00
}
}