-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
50 lines (50 loc) · 1.12 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
47
48
49
50
{
"name": "thefox/smtpd",
"description": "SMTP server (library) written in pure PHP.",
"license": "MIT",
"type": "library",
"keywords": [
"smtp",
"email",
"mail",
"server",
"daemon"
],
"homepage": "https://fox21.at",
"authors": [
{
"name": "Christian Mayer",
"email": "[email protected]",
"homepage": "https://fox21.at"
}
],
"require": {
"php": "^7.0",
"zendframework/zend-mail": "^2.3",
"symfony/options-resolver": "^3.3",
"psr/log": "^1.0",
"thefox/network": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"phpmailer/phpmailer": "^5.2",
"phpstan/phpstan": "^0.9",
"monolog/monolog": "^1.23",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"TheFox\\Smtp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TheFox\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x.x-dev"
}
}
}