-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.38 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
45
46
47
48
49
{
"name": "wondernetwork/ssh-pubkey-payload-verification",
"description": "Verify payloads based on senders SSH public keys",
"keywords": ["rsa", "ecdsa", "ed25519", "ssh", "public-key", "ed25519", "pki", "authentication"],
"type": "library",
"require": {
"php": ">=8.0",
"ext-openssl": "*",
"ext-sodium": "*",
"psr/http-client-implementation": "*",
"psr/simple-cache-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/simple-cache": "^3.0",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0",
"psr/http-factory": "^1.1",
"php-http/discovery": "^1.20"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^2.1",
"symfony/cache": "^6",
"symfony/http-client": "^6",
"nyholm/psr7": "^1.8",
"symfony/console": "^6"
},
"license": "MIT",
"autoload": {
"psr-4": {
"WonderNetwork\\SshPubkeyPayloadVerification\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WonderNetwork\\SshPubkeyPayloadVerification\\": "tests/"
}
},
"authors": [
{
"name": "Maciej Łebkowski",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}