-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 960 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
37
38
{
"name": "devizzent/codeception-mockserver-helper",
"description": "Codeception helper to manage and verify MockServer expectations",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"DEVizzent\\CodeceptionMockServerHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\DEVizzent\\CodeceptionMockServerHelper\\": "tests/"
}
},
"authors": [
{
"name": "Vicent Valls",
"email": "vizzent@gmail.com",
"role": "creator"
}
],
"minimum-stability": "stable",
"require": {
"php": "7.4.*||8.*",
"guzzlehttp/guzzle": "^7.0",
"codeception/codeception": "4.*||5.*",
"phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
"jfcherng/php-diff": "^6.14"
},
"require-dev": {
"phpmd/phpmd": "2.*",
"phpstan/phpstan": "1.*",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.4",
"squizlabs/php_codesniffer": "3.*"
}
}