forked from ackintosh/ganesha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 915 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
36
37
38
{
"name": "ackintosh/ganesha",
"description": "PHP implementation of Circuit Breaker pattern",
"keywords": ["circuit breaker", "microservices", "fault tolerance", "error handling", "guzzle middleware"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "akihito.nakano",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"psr/http-message": "~1.0"
},
"suggest": {
"guzzlehttp/guzzle": "Allows the usage of the Guzzle Middleware"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27",
"php-vcr/php-vcr": "~1.0",
"php-vcr/phpunit-testlistener-vcr": "~2.0",
"php-coveralls/php-coveralls": "~2.0",
"predis/predis": "^1.1",
"guzzlehttp/guzzle": "~6.3"
},
"autoload": {
"psr-4": {
"Ackintosh\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ackintosh\\": "tests/Ackintosh/"
}
}
}