-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 984 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 984 Bytes
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
{
"name": "soatok/pkd-client",
"authors": [
{
"name": "Soatok Dreamseeker",
"email": "soatok.dhole@gmail.com",
"homepage": "https://soatok.blog"
}
],
"autoload": {
"psr-4": {
"FediE2EE\\PKD\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"FediE2EE\\PKD\\Fuzzing\\": "fuzzing",
"FediE2EE\\PKD\\IntegrationTests\\": "tests/integration",
"FediE2EE\\PKD\\Tests\\": "tests/unit"
}
},
"require": {
"ext-curl": "*",
"php": "^8.2",
"fedi-e2ee/pkd-crypto": "^0.43|^1",
"fedi-e2ee/pkd-extensions": "^0|^1",
"guzzlehttp/guzzle": "^7",
"paragonie/sodium_compat": "^1|^2"
},
"require-dev": {
"paragonie/easydb": "^3",
"phpunit/phpunit": "^8|^9|^10|^11|^12",
"soatok/code-style": ">= 0",
"soatok/mini-fedi-server": "^0.3",
"vimeo/psalm": "^6",
"phpstan/phpstan": "^2.1"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}