-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.48 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
{
"name": "camelot/smtp-dev-server",
"description": "Development SMTP fake server",
"keywords": ["SMTP", "server", "testing", "MIME", "RFC822", "RFC2822", "mild-insanity"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Gwendolen Lynch",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-pcntl": "*",
"ext-sockets": "*",
"monolog/monolog": "^3.0",
"php-mime-mail-parser/php-mime-mail-parser": "^7.1",
"psr/log": "^2.0 || ^3.0",
"symfony/config": "^6.0",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/dotenv": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/finder": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/routing": "^6.0",
"symfony/stopwatch": "^6.0",
"twig/twig": "^3.4"
},
"require-dev": {
"camelot/coding-style": "^3.0",
"friendsofphp/php-cs-fixer": "^3.11",
"symfony/mailer": "^6.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.0"
},
"autoload": {
"psr-4": {
"Camelot\\SmtpDevServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Camelot\\SmtpDevServer\\Tests\\": "tests/"
}
},
"bin": [
"bin/smtp-dev-client",
"bin/smtp-dev-server"
]
}