forked from ackintosh/ganesha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.49 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
48
49
50
51
52
53
54
{
"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]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/kornrunner/phpunit-testlistener-vcr"
}
],
"require": {
"php": ">=7.3.0",
"psr/http-message": "~1.0"
},
"suggest": {
"guzzlehttp/guzzle": "Allows the usage of the Guzzle Middleware",
"symfony/http-client": "Allows the usage of the Ganesha HttpClient",
"ext-redis": "Allows the usage of RedisAdapter with Redis, RedisArray and RedisCluster",
"ext-memcached": "Allows the usage of MemcachedAdapter",
"ext-mongodb": "Allows the usage of MongoDBAdapter"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"symfony/http-client": "^4.3|^5.0",
"symfony/yaml": "^3.0|^4.0|^5.0",
"php-vcr/php-vcr": "^1.4.5",
"php-vcr/phpunit-testlistener-vcr": "dev-php8 as 3.2.2",
"php-coveralls/php-coveralls": "~2.0",
"predis/predis": "^1.1",
"guzzlehttp/guzzle": "~6.5",
"vimeo/psalm" : "*",
"ext-redis": "~5.1",
"ext-memcached": "~3.1",
"ext-mongodb": "~1.6"
},
"autoload": {
"psr-4": {
"Ackintosh\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ackintosh\\": "tests/Ackintosh/"
}
}
}