-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (42 loc) · 897 Bytes
/
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": "jiripudil/otp",
"description": "Library that generates and verifies one-time passwords.",
"keywords": ["security", "authentication", "2fa", "hotp", "totp"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jiří Pudil",
"email": "[email protected]",
"homepage": "https://jiripudil.cz"
}
],
"require": {
"php": "^8.1",
"paragonie/constant_time_encoding": "^2.7 || ^3.0"
},
"require-dev": {
"nette/tester": "^2.4",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.6"
},
"autoload": {
"psr-4": {
"JiriPudil\\OTP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JiriPudil\\OTP\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyze",
"tests": "tester -C tests",
"tests-with-coverage": "tester -C --coverage coverage.xml --coverage-src src/ tests/"
},
"prefer-stable": true,
"config": {
"sort-packages": true
}
}