-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 993 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
{
"name": "upscale/http-server-mock",
"description": "HTTP server that responds to recognized requests with static body and headers",
"type": "project",
"version": "5.0.1",
"keywords": ["HTTP", "server", "REST", "RESTful", "API", "JSON", "mock", "fake", "prototype", "prototyping"],
"homepage": "https://github.com/upscalesoftware/http-server-mock",
"license": "Apache-2.0",
"authors": [
{
"name": "Upscale Software Team",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"zendframework/zend-diactoros": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Upscale\\HttpServerMock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Upscale\\HttpServerMock\\Tests\\": "tests/"
}
}
}