-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 877 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 877 Bytes
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
{
"name": "ayesh/stateless-csrf",
"description": "Secret-key based state-less CSRF token generator and validator for PHP 8. State-less means you do not have to store the CSRF token in session or database.",
"type": "library",
"keywords": [
"form",
"middleware",
"csrf",
"hash",
"hmac",
"security",
"netsec"
],
"require": {
"php": "^8.3",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5.5"
},
"autoload": {
"psr-4": {
"Ayesh\\StatelessCSRF\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ayesh\\StatelessCSRF\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Ayesh Karunaratne",
"email": "ayesh@aye.sh"
}
]
}