-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
35 lines (35 loc) · 1.01 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
{
"name": "indragunawan/api-rate-limit-bundle",
"type": "symfony-bundle",
"description": "Rate limits protection for api-platform resources.",
"keywords": ["api-platform", "rate-limit"],
"license": "MIT",
"authors": [
{
"name": "Indra Gunawan",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3 || ^8.0",
"api-platform/core": "^2.4",
"doctrine/annotations": "^1.4",
"symfony/cache": "^3.4 || ^4.4 || ^5.0",
"symfony/config": "^3.4 || ^4.4 || ^5.0",
"symfony/dependency-injection": "^3.4 || ^4.4 || ^5.0",
"symfony/http-foundation": "^3.4 || ^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/security-bundle": "^3.4 || ^4.4 || ^5.0"
},
"autoload": {
"psr-4": {
"Indragunawan\\ApiRateLimitBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"config": {
"sort-packages": true
}
}