-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 941 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 941 Bytes
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
{
"name": "mock-server/mockserver-client",
"description": "PHP client for MockServer - enables easy mocking of any system you integrate with via HTTP or HTTPS",
"type": "library",
"license": "Apache-2.0",
"keywords": ["mockserver", "mock", "testing", "http", "stub", "proxy"],
"homepage": "https://www.mock-server.com",
"authors": [
{
"name": "James D Bloom",
"email": "jamesdbloom@gmail.com"
}
],
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.5",
"psr/http-client": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"MockServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MockServer\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}