-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
36 lines (36 loc) · 846 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
{
"name": "leocarmo/circuit-breaker-php",
"description": "Circuit Breaker for PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Leonardo Carmo",
"homepage": "https://leocarmo.dev"
}
],
"autoload": {
"psr-4": {
"LeoCarmo\\CircuitBreaker\\": "src/"
}
},
"require": {
"php": "^8.0",
"psr/http-message": "^1.0"
},
"suggest": {
"ext-swoole": "Required to use Swoole Table Adapter.",
"ext-redis": "Required to use Redis Adapter.",
"guzzlehttp/guzzle": "Allows the usage of the GuzzleMiddleware"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpunit/php-code-coverage": "^9.2",
"symfony/var-dumper": "^5.2",
"swoole/ide-helper": "dev-master",
"guzzlehttp/guzzle": "^7.0"
},
"scripts": {
"test": "phpunit --testdox tests "
}
}