forked from paragonie/anti-csrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "paragonie/anti-csrf",
"description": "Paragon Initiative's Anti-CSRF Security Library",
"keywords": [
"security",
"csrf",
"appsec",
"session"
],
"license": "(MIT or AGPL-3.0)",
"type": "library",
"authors": [
{
"name": "Scott Arciszewski",
"email": "[email protected]",
"homepage": "https://paragonie.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/paragonie/anti-csrf/issues",
"email": "[email protected]",
"source": "https://github.com/paragonie/anti-csrf"
},
"autoload": {
"psr-4": {
"ParagonIE\\AntiCSRF\\": "src/"
}
},
"require": {
"php": "^7",
"paragonie/constant_time_encoding": "^2"
},
"require-dev": {
"phpunit/phpunit": "^4|^5",
"vimeo/psalm": "^0|^1"
}
}