-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.13 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
{
"name": "madmikeyb/throttleable",
"description": "Temporarily disallow IP addresses from taking certain actions within your Laravel Application",
"keywords": [
"madmikeyb",
"laravel",
"throttleable",
"security"
],
"license": "MIT",
"homepage": "https://github.com/madmikeyb/throttleable",
"authors": [
{
"name": "Michael Burton",
"email": "me@mikeylicio.us",
"homepage": "http://mikeylicio.us",
"role": "Developer"
}
],
"require": {
"php" : ">=7.0",
"illuminate/database": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0|~7.0.0",
"illuminate/http": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0|~7.0.0",
"nesbot/carbon": "~1.24|~2.0",
"illuminate/events": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0|~7.0.0"
},
"autoload": {
"psr-4": {
"MadMikeyB\\Throttleable\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"MadMikeyB\\Throttleable\\Providers\\ThrottleableServiceProvider"
]
}
}
}