-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 1.21 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
{
"name": "jestesmining/chia-client-php",
"type": "library",
"description": "Provides support for interacting with chia nodes via RPC interface",
"keywords": ["chia","chia-blockchain"],
"homepage": "https://github.com/JEstesMining/chia-client-php",
"license": "MIT",
"authors": [
{
"name": "Joshua Estes"
}
],
"support": {
"issues": "https://github.com/JEstesMining/chia-client-php/issues",
"forum": "https://github.com/JEstesMining/chia-client-php/discussions",
"wiki": "https://github.com/JEstesMining/chia-client-php/wiki",
"source": "https://github.com/JEstesMining/chia-client-php",
"docs": "https://github.com/JEstesMining/chia-client-php"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/JoshuaEstes"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.2.5",
"symfony/http-client": "^5.2",
"symfony/yaml": "5.4.x-dev"
},
"autoload": {
"psr-4": { "JEstesMining\\Component\\Chia\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}