-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.34 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
{
"name": "rpkamp/mailhog-mink-behat-context",
"description": "Mailhog Extension for Behat",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Remon van de Kamp",
"email": "rpkamp@gmail.com"
}
],
"autoload": {
"psr-4": {
"rpkamp\\Behat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"rpkamp\\Behat\\MailhogExtension\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ^8.0",
"behat/mink-extension": "^2.3",
"rpkamp/mailhog-behat-extension": "^1.0.0",
"symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"php-http/curl-client": "^2.0",
"squizlabs/php_codesniffer": "^3.4.2",
"swiftmailer/swiftmailer": "^6.2",
"behat/mink-goutte-driver": "^1.2.1",
"phpstan/phpstan": "^1.1",
"guzzlehttp/guzzle": "^6.3.0",
"doctrine/coding-standard": "^8.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"egulias/email-validator": "^2.1.23",
"nyholm/psr7": "^1.3",
"phpmd/phpmd": "^2.9"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}