forked from ericmartel/codeception-email-mailhog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 927 Bytes
/
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
{
"name": "lamoda/codeception-email-mailhog",
"description": "Provides test helpers for Codeception when testing email functionality with MailHog",
"license": "MIT",
"authors": [
{
"name": "Eric Martel",
"email": "[email protected]"
},
{
"name": "Lamoda developers",
"homepage": "https://tech.lamoda.ru/"
}
],
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"codeception/codeception": "^4.0",
"ericmartel/codeception-email": "^1.0",
"friendsofphp/php-cs-fixer": "^2.15.0"
},
"autoload": {
"psr-4": {
"Codeception\\Module\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Codeception\\Module\\Tests\\": "tests"
}
}
}