-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
46 lines (46 loc) · 1.25 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": "artisansdk/ratelimiter",
"description": "A leaky bucket rate limiter and corresponding middleware with route-level granularity compatible with Laravel.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel LaBarge",
"email": "daniel@artisanmade.io"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": ">=8.1",
"illuminate/contracts": "~10.0|~11.0",
"nesbot/carbon": "~2.0|~3.0",
"symfony/http-kernel": "~6.0|~7.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "~1.0",
"pestphp/pest": "^2.34"
},
"autoload": {
"psr-4": {
"ArtisanSdk\\RateLimiter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArtisanSdk\\RateLimiter\\Tests\\": "tests/"
}
},
"scripts": {
"fix": "./vendor/bin/pint src/ tests/",
"test": "./vendor/bin/pint --test && ./vendor/bin/pest --no-coverage",
"report": "./vendor/bin/pest --coverage --min=80"
}
}