-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
54 lines (54 loc) · 1.15 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
{
"name": "swentel/nostr-php",
"description": "Nostr helper library for PHP",
"keywords": ["nostr", "library"],
"homepage": "https://nostr-php.dev",
"license": "MIT",
"authors": [
{
"name": "Sebastian Hagens",
"email": "[email protected]",
"homepage": "https://sebastix.nl",
"role": "Developer & maintainer"
},
{
"name": "Kristof De Jaeger",
"role": "Original author",
"homepage": "https://realize.be"
}
],
"support": {
"issue": "https://github.com/swentel/nostr-php/issues",
"chat": "https://t.me/nostr_php"
},
"require": {
"php": ">=8.1 <8.4",
"ext-gmp": "*",
"ext-xml": "*",
"bitwasp/bech32": "^0.0.1",
"phrity/websocket": "^3.0",
"simplito/elliptic-php": "^1.0",
"uma/phpecc": "^0.1.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"swentel\\nostr\\": "src/"
}
},
"bin": [
"bin/nostr-php"
],
"config": {
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"scripts": {
"lint": "@php vendor/bin/php-cs-fixer fix -v"
}
}