-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.43 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
{
"name": "rpkamp/mailhog-behat-extension",
"description": "Mailhog Extension for Behat",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Remon van de Kamp",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"rpkamp\\Behat\\MailhogExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"rpkamp\\Behat\\MailhogExtension\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"behat/behat": "^3.8.0",
"rpkamp/mailhog-client": "^2.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"psr-discovery/http-client-implementations": "^1.0",
"psr-discovery/http-factory-implementations": "^1.0",
"symfony/http-client": "^6.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.6",
"php-parallel-lint/php-parallel-lint": "^1.2",
"swiftmailer/swiftmailer": "^6.2",
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.3.3",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-mockery": "^1.1",
"doctrine/coding-standard": "^8.0",
"egulias/email-validator": "^2.1.23",
"phpmd/phpmd": "^2.9.1",
"nyholm/psr7": "^1.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}