-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.04 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.04 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hmacauth/laravel-hmac-auth",
"description": "HMAC API authentication for Laravel with signature verification, replay attack prevention, and rate limiting",
"keywords": [
"laravel",
"hmac",
"authentication",
"api",
"security",
"octane",
"middleware",
"signature",
"nonce",
"rate-limiting",
"replay-attack",
"request-signing"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Muhammad Waqas Majeed",
"email": "hello@waqasmajeed.dev"
}
],
"require": {
"php": "^8.3",
"illuminate/contracts": "^11.0|^12.0",
"illuminate/database": "^11.0|^12.0",
"illuminate/encryption": "^11.0|^12.0",
"illuminate/http": "^11.0|^12.0",
"illuminate/routing": "^11.0|^12.0",
"illuminate/support": "^11.0|^12.0"
},
"require-dev": {
"larastan/larastan": "^2.0|^3.0",
"laravel/pint": "^1.0",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0"
},
"autoload": {
"psr-4": {
"HmacAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HmacAuth\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"HmacAuth\\HmacAuthServiceProvider"
],
"aliases": {
"Hmac": "HmacAuth\\Facades\\Hmac"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "pest --configuration=phpunit.xml.dist",
"test-coverage": "pest --configuration=phpunit.xml.dist --coverage --min=90 --coverage-clover=coverage.xml",
"analyse": "phpstan analyse",
"format": "pint",
"format-check": "pint --test"
},
"minimum-stability": "stable",
"prefer-stable": true
}