-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
69 lines (69 loc) · 1.58 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "lto/api",
"description": "LTO Network client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "LTO Network",
"email": "[email protected]"
},
{
"name": "Arnold Daniels",
"email": "[email protected]",
"homepage": "https://www.jasny.net"
}
],
"support": {
"issues": "https://github.com/legalthings/lto-api.php/issues",
"source": "https://github.com/legalthings/lto-api.php"
},
"bin": [
"bin/lto-account",
"bin/lto-seed",
"bin/lto-sign"
],
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"ext-sodium": "*",
"legalthings/base58-compat": "^0.1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.2",
"jasny/php-code-quality": "^2.6"
},
"conflict": {
"legalthings/lto-api": "*"
},
"autoload": {
"psr-4": {
"LTO\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"LTO\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpstan analyse",
"phpunit",
"phpcs -p src"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}