-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.44 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
{
"name": "koehnlein/codeception-email-mailpit",
"description": "Provides test helpers for Codeception when testing email functionality with Mailpit",
"license": "MIT",
"authors": [
{
"name": "Eric Martel",
"email": "[email protected]"
},
{
"name": "Lamoda developers",
"homepage": "https://tech.lamoda.ru/"
},
{
"name": "Eric Braun",
"email": "[email protected]"
},
{
"name": "Albrecht Köhnlein",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"codeception/codeception": "^5.0",
"guzzlehttp/guzzle": "^6.1 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"http-interop/http-factory-guzzle": "^1.2",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest"
},
"suggest": {
"ext-iconv": "Will be used as a mime decoder (iconv_mime_decode)",
"ext-mbstring": "Will be used as a mime decoder if ext-iconv is not installed (mb_decode_mimeheader)"
},
"autoload": {
"psr-4": {
"Codeception\\Module\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Codeception\\Module\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}