-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
47
{
"name": "graze/transient-fault-handler",
"description": "Retry tasks that fail due to transient faults",
"keywords": [
"graze",
"transient fault",
"retry",
"networking"
],
"homepage": "https://github.com/graze/transient-fault-handler",
"license": "MIT",
"authors": [
{
"name": "Jake Wright",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Graze Developers",
"email": "[email protected]",
"homepage": "http://www.graze.com",
"role": "Development Team"
}
],
"require": {
"php": ">=5.5.0",
"psr/log": "^1.0.2"
},
"require-dev": {
"phpunit/phpunit" : "^4.8.35",
"squizlabs/php_codesniffer": "~2.7.1",
"graze/standards": "^1.0",
"mockery/mockery": "^0.9"
},
"autoload": {
"psr-4": {
"Graze\\TransientFaultHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\TransientFaultHandler\\Test\\": "tests/src",
"Graze\\TransientFaultHandler\\Test\\Unit\\": "tests/unit",
"Graze\\TransientFaultHandler\\Test\\Integration\\": "tests/integration"
}
}
}