-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 1.2 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
{
"name": "harmonyio/smtp-client",
"description": "Asynchronous SMPT client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pieter Hordijk",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"amphp/amp": "^2.1.1",
"amphp/byte-stream": "^1.5.1",
"amphp/log": "^1.0.0",
"amphp/socket": "^0.10.11",
"monolog/monolog": "^1.24.0",
"psr/log": "^1.1.0"
},
"require-dev": {
"harmonyio/php-codesniffer-ruleset": "1.0.0-rc1",
"harmonyio/phpunit-extension": "^1.0.0-rc1",
"maglnet/composer-require-checker": "^1.1.0",
"phpunit/phpunit": "^7.5.1",
"slevomat/coding-standard": "^4.8.6",
"squizlabs/php_codesniffer": "^3.4.0"
},
"autoload": {
"psr-4": {
"HarmonyIO\\SmtpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HarmonyIO\\SmtpClientTest\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}