-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.35 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
50
51
52
53
54
55
56
{
"name": "joemires/superban",
"description": "This is a request limit wrapper for laravel. It works like the default laravel throttle on steroids",
"type": "library",
"license": "MIT",
"keywords": [
"joemires",
"laravel",
"rate limiting",
"rate throttling",
"superban",
"block requests"
],
"authors": [
{
"role": "Developer",
"name": "Joseph Bassey",
"email": "[email protected]",
"homepage": "https://www.joemires.me"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.30"
},
"require-dev": {
"laravel/pint": "^1.13",
"orchestra/testbench": "^8.18",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Joemires\\Superban\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joemires\\Superban\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Joemires\\Superban\\SuperbanServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}