-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 900 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 900 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
37
38
39
40
41
42
{
"name": "aeris/guzzle-http-mock",
"description": "A mock library for verifying requests made with the Guzzle Http Client, and mocking responses.",
"keywords": [
"testing",
"mocking",
"mock",
"guzzle",
"http",
"client"
],
"version": "1.1.5",
"license": "GPL",
"authors": [
{
"name": "Edan Schwartz",
"email": "edanschwartz@gmail.com",
"role": "Maintainer"
},
{
"name": "Seth Miller",
"email": "seth@four43.com",
"role": "Maintainer"
},
{
"name": "Nick Shipes",
"email": "nshipes@aerisweather.com",
"role": "Maintainer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"guzzlehttp/guzzle": "~5.0.0"
},
"autoload": {
"psr-4": {
"Aeris\\GuzzleHttpMock\\": "src/",
"Aeris\\GuzzleHttpMockTest\\": "test/GuzzleHttpMockTest'"
}
}
}