-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.25 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "jv-conseil/dkim-php-mail-signature",
"description": "🔏 Stand-alone DKIM class to sign your emails with a 2048 bit private key hashed with SHA-256 algorithm.",
"keywords": [
"dkim",
"dkim-signature",
"dmarc",
"dmarc-record",
"spf",
"spf-record",
"composer",
"packagist",
"php"
],
"type": "library",
"homepage": "http://www.jv-conseil.net",
"license": "EUPL-1.2",
"authors": [
{
"name": "JV conseil — Internet Consulting",
"email": "[email protected]",
"homepage": "http://www.jv-conseil.net",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.6.37"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "2.*"
},
"autoload": {
"psr-4": {
"JVconseil\\DkimPhpMailSignature\\": "src/"
}
},
"support": {
"issues": "https://github.com/JV-conseil-Internet-Consulting/dkim-php-mail-signature/issues",
"docs": "https://jv-conseil-internet-consulting.github.io/dkim-php-mail-signature/classes/JVconseil.DkimPhpMailSignature.DKIMconfig.html",
"wiki": "https://github.com/JV-conseil-Internet-Consulting/dkim-php-mail-signature/wiki"
},
"scripts": {
"test": "php examples/SignWithConfigClass.php"
}
}