-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.19 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
{
"name": "pedroac/nonce",
"type": "library",
"description": "A nonces manager usefull for preventing CSRF and replay attacks.",
"keywords": ["nonce", "security", "token", "csrf", "replay-attack"],
"homepage": "https://github.com/pedroac/nonce4php",
"support": {
"email": "pedro.amaral.couto@gmail.com",
"issues": "https://github.com/pedroac/nonce4php/issues"
},
"authors": [
{
"name": "Pedro Amaral Couto",
"email": "pedro.amaral.couto@gmail.com",
"role": "Developer"
}
],
"license": "MIT",
"config": {
"vendor-dir": "./php/vendor"
},
"autoload": {
"psr-4": {"pedroac\\nonce\\": "php/lib"}
},
"prefer-stable": true,
"suggest": {
"symfony/cache": "^4.0.8"
},
"require": {
"php": ">=7.1",
"psr/simple-cache": "@stable",
"kdyby/datetime-provider": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^7.1.1",
"squizlabs/php_codesniffer": "@stable",
"phpmd/phpmd" : "@stable",
"phpdocumentor/phpdocumentor": "@stable",
"codacy/coverage": "@stable",
"symfony/cache": "^4.0.8"
}
}