-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
40 lines (40 loc) · 1.08 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
{
"name": "danharrin/livewire-rate-limiting",
"description": "Apply rate limiters to Laravel Livewire actions.",
"license": "MIT",
"homepage": "https://github.com/danharrin/livewire-rate-limiting",
"support": {
"issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
"source": "https://github.com/danharrin/livewire-rate-limiting"
},
"authors": [
{
"name": "Dan Harrin",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"livewire/livewire": "^3.0",
"livewire/volt": "^1.3",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.0"
},
"autoload": {
"psr-4": {
"DanHarrin\\LivewireRateLimiting\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DanHarrin\\LivewireRateLimiting\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}