-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.54 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.54 KB
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
{
"name": "gabrielanhaia/php-circuit-breaker",
"description": "Circuit breaker pattern for PHP with multiple storage adapters, event system, and manual override.",
"type": "library",
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"psr/cache": "^3.0",
"psr/event-dispatcher": "^1.0",
"psr/simple-cache": "^3.0"
},
"suggest": {
"ext-apcu": "Required for ApcuStorage adapter",
"ext-memcached": "Required for MemcachedStorage adapter",
"ext-redis": "Required for RedisStorage adapter",
"psr/cache": "Required for Psr6CacheStorage adapter (^3.0)",
"psr/event-dispatcher": "Required for Psr14EventDispatcherBridge (^1.0)",
"psr/simple-cache": "Required for Psr16CacheStorage adapter (^3.0)"
},
"license": "MIT",
"authors": [
{
"name": "Gabriel Anhaia",
"email": "anhaia.gabriel@gmail.com"
}
],
"autoload": {
"psr-4": {
"GabrielAnhaia\\PhpCircuitBreaker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GabrielAnhaia\\PhpCircuitBreaker\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true
}
}