-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.61 KB
/
Copy pathcomposer.json
File metadata and controls
96 lines (96 loc) · 2.61 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "pps-protocol/pps-php",
"description": "PHP implementation of the PulseProof Sentinel Protocol (PPS): time-bound asymmetric authentication proofs for offline, OTP-style, transaction-signing, duress-aware, and multi-device flows.",
"type": "library",
"license": "Apache-2.0",
"keywords": [
"authentication",
"2fa",
"mfa",
"totp",
"totp-alternative",
"webauthn",
"fido2",
"ed25519",
"cbor",
"hkdf",
"pulseproof",
"pps",
"security-protocol",
"transaction-signing",
"offline-authentication",
"duress",
"threshold-signatures",
"multisig"
],
"homepage": "https://github.com/pps-protocol/pps-php",
"support": {
"issues": "https://github.com/pps-protocol/pps-php/issues",
"source": "https://github.com/pps-protocol/pps-php",
"docs": "https://github.com/pps-protocol/pps-php/tree/main/docs"
},
"authors": [
{
"name": "Hossein Hezami",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-sodium": "*",
"ext-gmp": "*",
"ext-hash": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"ext-pdo": "Required for the PDO storage backend",
"ext-redis": "Required for the Redis storage backend"
},
"autoload": {
"psr-4": {
"Pps\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pps\\Tests\\": "tests/"
}
},
"bin": [
"bin/pps"
],
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:integration": "phpunit --testsuite=Integration",
"test:coverage": "phpunit --coverage-html coverage",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"analyse": "phpstan analyse"
},
"scripts-descriptions": {
"test": "Run all tests",
"test:unit": "Run unit tests",
"test:integration": "Run integration tests",
"test:coverage": "Generate code coverage report",
"cs-check": "Check code style",
"cs-fix": "Fix code style",
"analyse": "Run static analysis"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-main": "0.1.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}