-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
55 lines (55 loc) · 1.54 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
55
{
"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": ">=8.0",
"psr/http-message": "^1.0|^2.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": "^5.3|^6.0",
"symfony/yaml": "^3.0|^4.0|^5.0|^6.0",
"php-vcr/php-vcr": "^1.4.5",
"php-vcr/phpunit-testlistener-vcr": "dev-php8 as 3.2.2",
"php-coveralls/php-coveralls": "~2.5",
"predis/predis": "^1.1",
"guzzlehttp/guzzle": "^7.4.5",
"friendsofphp/php-cs-fixer": "^v3.1.0",
"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/"
}
}
}