-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.24 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "fyennyi/async-cache-php",
"description": "Asynchronous caching library with rate limiting and stale-while-revalidate support.",
"type": "library",
"license": "LicenseRef-CSSM-Unlimited-2.0",
"authors": [
{
"name": "Serhii Cherneha",
"email": "chernegasergiy3@gmail.com"
}
],
"require": {
"php": ">=8.1",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"react/async": "^4.3",
"react/cache": "^1.2",
"react/promise-timer": "^1.11",
"symfony/clock": "^6.3",
"symfony/lock": "^6.0 || ^7.0 || ^8.0",
"symfony/rate-limiter": "^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.93",
"react/http": "^1.11",
"react/socket": "^1.17"
},
"autoload": {
"psr-4": {
"Fyennyi\\AsyncCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}