forked from nostriphant/transpher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.55 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
53
54
55
56
57
58
{
"name": "nostriphant/transpher",
"description": "Nostr Relay in PHP",
"type": "project",
"require": {
"php": "^8.3",
"ext-pcntl": "*",
"vlucas/phpdotenv": "^5.6",
"monolog/monolog": "^3.7",
"rikmeijer/functional-php": "^1.0",
"amphp/http-server": "^3.3",
"amphp/byte-stream": "^2.1",
"amphp/log": "^2.0",
"amphp/websocket-server": "^4.0",
"amphp/http-server-router": "^2.0",
"amphp/http-server-static-content": "^2.0",
"amphp/websocket-client": "^2.0",
"nostriphant/nip-01": "^1.0",
"nostriphant/nip-19": "^1.0",
"nostriphant/nip-44": "^1.0",
"nostriphant/functional-alternate": "^1.0",
"nostriphant/nip-59": "^1.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"nostriphant\\Transpher\\": "src/",
"nostriphant\\TranspherTests\\": "tests/"
}
},
"authors": [
{
"name": "Rik Meijer",
"email": "[email protected]"
}
],
"require-dev": {
"pestphp/pest": "^2.35",
"mockery/mockery": "^1.6"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"clearCache": [
"rm -rf ./data/events/*",
"rm -rf ./data/files/*",
"rm -rf ./data/disktest_*",
"rm -rf ./data/relay_*"
],
"test": [
"@clearCache @no_additional_args",
"./vendor/bin/pest"
]
}
}