-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.04 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
{
"name": "ddrv/mailer",
"type": "library",
"description": "PHP library for sending email",
"keywords": ["email", "mail", "send", "attachments", "smtp", "sendmail"],
"license": "MIT",
"authors": [
{
"name": "Ivan Dudarev",
"email": "[email protected]",
"homepage": "https://ddrv.ru"
}
],
"require": {
"php": ">=5.3",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.5 || ^8.5 || 9.3",
"squizlabs/php_codesniffer": "^2.9 || ^3.5"
},
"suggest": {
"ext-fileinfo": "Mime-Type detecting"
},
"autoload": {
"psr-4": {
"Ddrv\\Mailer\\": "src/"
},
"files": ["fn/fn.php"]
},
"autoload-dev": {
"psr-4": {
"Stuff\\Ddrv\\Mailer\\": "stuff/",
"Tests\\Ddrv\\Mailer\\": "tests/"
}
},
"funding": [
{
"type": "other",
"url": "https://www.paypal.me/ddrv"
}
]
}