-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.36 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
50
51
52
{
"name": "web-of-trust/webkey-directory",
"description": "Webkey Directory project",
"type": "project",
"homepage": "https://github.com/web-of-trust/webkey-directory",
"license": "AGPL-3.0",
"authors": [
{
"name": "Nguyen Van Nguyen",
"email": "nguyennv1981@gmail.com",
"homepage": "https://github.com/nguyennv"
}
],
"autoload": {
"psr-4": {
"Wkd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wkd\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1 | ^8.2",
"league/flysystem": "^3.25",
"php-di/slim-bridge": "^3.4",
"psr-discovery/http-client-implementations": "^1.1",
"psr-discovery/http-factory-implementations": "^1.1",
"psr-discovery/log-implementations": "^1.0",
"slim/php-view": "^3.2",
"symfony/console": "^7.0",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"donatj/mock-webserver": "^2.7",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
"php-http/curl-client": "^2.3",
"phpunit/phpunit": "^9.0 | ^10.0"
},
"scripts": {
"test": [
"vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}