forked from rollerworks/split-token
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.25 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "rollerworks/split-token",
"type": "library",
"description": "Token-Based Authentication Protocol without Side-Channels",
"keywords": [
"token",
"crypto",
"rollerworks"
],
"homepage": "https://rollerworks.github.io",
"license": "MPL-2.0",
"authors": [
{
"name": "Sebastiaan Stok",
"email": "s.stok@rollerscapes.net"
}
],
"require": {
"php": "^7.2",
"paragonie/constant_time_encoding": "^2.2",
"paragonie/hidden-string": "^1.0",
"paragonie/sodium_compat": "^1.8"
},
"require-dev": {
"doctrine/coding-standard": "^5.0",
"phpunit/phpunit": "^7.5",
"psalm/plugin-phpunit": "^0.3.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"autoload": {
"psr-4": {
"Rollerworks\\Component\\SplitToken\\": "src"
},
"exclude-from-classmap": [
"tests/"
]
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Component\\SplitToken\\Tests\\": "tests"
}
}
}