forked from Samyoul/U2F-php-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.26 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
43
44
{
"name": "code-lts/u2f-php-server",
"description": "Server side handling class for FIDO U2F registration and authentication",
"license":"BSD-2-Clause",
"homepage": "https://github.com/code-lts/U2F-php-server#readme",
"authors": [
{
"name": "Samuel Hawksby-Robinson",
"email": "[email protected]"
},
{
"name": "William Desportes",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/code-lts/U2F-php-server/issues",
"source": "https://github.com/code-lts/U2F-php-server"
},
"scripts": {
"test": "@php ./vendor/bin/phpunit",
"phpcs": "@php ./vendor/bin/phpcs",
"phpcbf": "@php ./vendor/bin/phpcbf"
},
"require": {
"php": "^7.2 || ^8.0",
"ext-openssl":"*"
},
"require-dev": {
"phpunit/phpunit": "^8 || ^9 || ^10",
"wdes/coding-standard": "^3.3"
},
"autoload": {
"psr-4": { "CodeLts\\U2F\\U2FServer\\": ["src/"] }
},
"autoload-dev": {
"psr-4": { "CodeLts\\U2F\\U2FServer\\Tests\\": ["test/"] }
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}