-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 938 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
37
38
39
40
{
"name": "aeon-php/rate-limiter",
"type": "library",
"description": "Aeon rate limiter (throttling) library",
"keywords": [
"ratelimiter",
"throttling",
"rate",
"limiter"
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"aeon-php/calendar": "~1.0",
"aeon-php/sleep": "~1.0",
"psr/cache": "~1.0|~2.0|~3.0",
"symfony/polyfill-mbstring": "~1.0"
},
"require-dev": {
"symfony/cache": "~5.4||~6.3||~7.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"license": "MIT",
"autoload": {
"psr-4": {
"Aeon\\": [
"src/Aeon"
]
}
},
"autoload-dev": {
"psr-4": {
"Aeon\\RateLimiter\\Tests\\": "tests/Aeon/RateLimiter/Tests/"
}
},
"prefer-stable": true
}