-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
37 lines (37 loc) · 1.01 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
{
"name": "internations/http-mock",
"description": "Mock HTTP requests on the server side in your PHP unit tests",
"license": "MIT",
"authors": [
{
"name": "Lars Strojny",
"email": "[email protected]"
},
{
"name": "Max Beutel",
"email": "[email protected]"
}
],
"require": {
"php": "~7.1",
"silex/silex": "~2.0",
"guzzle/guzzle": ">=3.8",
"symfony/process": "~3|~4|~5",
"jeremeamia/superclosure": "~2",
"lstrojny/hmmmath": ">=0.5.0"
},
"require-dev": {
"internations/kodierungsregelwerksammlung": "~0.23.0",
"internations/testing-component": "1.0.1",
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {"InterNations\\Component\\HttpMock\\": "src/"}
},
"autoload-dev": {
"psr-4": {"InterNations\\Component\\HttpMock\\Tests\\": "tests/"}
},
"scripts": {
"tests": "phpunit"
}
}