-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 841 Bytes
/
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
{
"name": "ossinkine/swiftmailer-punycode-plugin",
"type": "library",
"description": "Swiftmailer plugin to convert domain in email addresses to punycode",
"keywords": ["swiftmailer","swiftmailer-plugin","punycode"],
"license": "MIT",
"authors": [
{
"name": "Gocha Ossinkine",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"swiftmailer/swiftmailer": "^6.0",
"true/punycode": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"conflict": {
"swiftmailer/swiftmailer": "^6.1"
},
"autoload": {
"psr-4": {
"Ossinkine\\Swift\\Plugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ossinkine\\Swift\\Plugin\\": "tests/"
}
}
}