-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (36 loc) · 1.03 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
{
"name": "gabrielanhaia/laravel-circuit-breaker",
"description": "Circuit breaker for microservices developed in PHP and Laravel Framework",
"type": "library",
"keywords": ["laravel", "micro-services", "circuit-breaker", "api"],
"require": {
"gabrielanhaia/php-circuit-breaker": "^1.0",
"illuminate/support": "^5.6|^6.0|^7.0|^8.0"
},
"license": "MIT",
"authors": [
{
"name": "Gabriel Anhaia",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"GabrielAnhaia\\LaravelCircuitBreaker\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"GabrielAnhaia\\LaravelCircuitBreaker\\Providers\\CircuitBreakerServiceProvider"
],
"aliases": {
"CircuitBreaker": "GabrielAnhaia\\LaravelCircuitBreaker\\CircuitBreakerFacade"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}