-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.41 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "bedrockstreaming/rate-limit-bundle",
"description": "Manage rate limitation for your routes",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Bedrock",
"email": "[email protected]",
"homepage": "https://tech.bedrockstreaming.com/"
}
],
"config": {
"bin-dir": "bin",
"vendor-dir": "vendor",
"sort-packages": true
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/options-resolver": "^5.4 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "9.5.*",
"m6web/php-cs-fixer-config": "^2.1",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-phpunit": "^1.1",
"symfony/var-dumper": "^5.4 || ^6.0",
"rector/rector": "^0.12.22"
},
"suggest": {
"webonyx/graphql-php": "Needed to support @GraphQLRateLimit attribute"
},
"autoload": {
"psr-4": {
"Bedrock\\Bundle\\RateLimitBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bedrock\\Bundle\\RateLimitBundle\\Tests\\": "tests/"
}
}
}