-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathcomposer.json
46 lines (46 loc) · 1.37 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
{
"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": "^8.1",
"illuminate/cache": "^10.44 || ^11.0 || ^12.0",
"illuminate/contracts": "^10.44 || ^11.0 || ^12.0",
"illuminate/http": "^10.44 || ^11.0 || ^12.0",
"illuminate/support": "^10.44 || ^11.0 || ^12.0"
},
"require-dev": {
"graham-campbell/analyzer": "^5.0",
"graham-campbell/testbench": "^6.2",
"mockery/mockery": "^1.6.6",
"phpunit/phpunit": "^10.5.45 || ^11.5.10"
},
"autoload": {
"psr-4": {
"GrahamCampbell\\Throttle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\Throttle\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"laravel": {
"providers": [
"GrahamCampbell\\Throttle\\ThrottleServiceProvider"
]
}
}
}