forked from GrahamCampbell/Laravel-Throttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.38 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
{
"name": "graham-campbell/throttle",
"description": "Throttle Is A Rate Limiter For Laravel",
"keywords": ["laravel", "framework", "rate limit", "throttle", "throttling", "Throttle", "Laravel Throttle", "Laravel-Throttle", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]",
"homepage": "https://github.com/GrahamCampbell"
}
],
"require": {
"php": "^7.4.15 || ^8.0.2",
"illuminate/cache": "^8.75 || ^9.0",
"illuminate/contracts": "^8.75 || ^9.0",
"illuminate/http": "^8.75 || ^9.0",
"illuminate/support": "^8.75 || ^9.0"
},
"require-dev": {
"graham-campbell/analyzer": "^3.1",
"graham-campbell/testbench": "^5.7",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"GrahamCampbell\\Throttle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\Throttle\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"laravel": {
"providers": [
"GrahamCampbell\\Throttle\\ThrottleServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}