-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.07 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
{
"name": "paragonie/gossamer-server",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "[email protected]",
"homepage": "https://paragonie.com"
}
],
"description": "Standalone REST API server for retrieving updates.",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"ParagonIE\\GossamerServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\GossamerServer\\Tests\\": "tests/"
}
},
"bin": [
"bin/configure",
"bin/make",
"bin/sync"
],
"license": "ISC",
"require": {
"php": "^7.3|^8",
"ext-json": "*",
"guzzlehttp/guzzle": "^6",
"guzzlehttp/psr7": "^1",
"nikic/fast-route": "^1",
"paragonie/libgossamer": "^0.4|^1",
"psr/http-message": "^1"
},
"require-dev": {
"phpunit/phpunit": "^7|^8|^9",
"vimeo/psalm": "^3|^4"
},
"scripts": {
"full-test": "phpunit && psalm",
"start": "php -S 0.0.0.0:8998 -t public public/index.php",
"static-analysis": "psalm",
"test": "phpunit"
},
"type": "project"
}