-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "micc83/mailamie",
"version": "1.1.0",
"description": "Catch All SMTP Server for testing",
"keywords": [
"smtp",
"mailamie",
"php"
],
"type": "library",
"homepage": "https://github.com/micc83/mailamie",
"license": "MIT",
"authors": [
{
"name": "Alessandro Benoit",
"email": "[email protected]",
"homepage": "https://github.com/micc83",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"cboden/ratchet": "^0.4.3",
"react/event-loop": "^1.2",
"react/http": "^1.2",
"symfony/console": "^5.1",
"symfony/event-dispatcher": "^5.1",
"zbateson/mail-mime-parser": "^2.2"
},
"require-dev": {
"phpstan/phpstan": "^1.4.8",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9",
"phpmailer/phpmailer": "^6.1",
"ratchet/pawl": "^0.4.1",
"react/child-process": "^0.6.1"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Mailamie\\": "src/"
}
},
"scripts": {
"check": [
"./vendor/bin/php-cs-fixer fix --dry-run",
"./vendor/bin/phpstan analyze",
"./vendor/bin/phpunit --stop-on-failure --stop-on-error"
]
},
"bin": [
"bin/mailamie"
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}