-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 900 Bytes
/
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
{
"name": "radianceteam/ton-client-php",
"description": "TON Client Wrapper for PHP",
"license": "Apache-2.0",
"authors": [
{
"name": "Andrew Anisimov",
"email": "anisimov.new@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"\\": "src/"
},
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"\\": "tests/"
},
"classmap": [
"src/",
"tests/"
]
},
"config": {
"platform": {
"php": "7.4"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-ton_client": ">=1.38.0",
"psr/log": "^1.1"
},
"scripts": {
"test": "phpunit",
"generate": "php gen.php"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"nette/php-generator": "^3.5",
"monolog/monolog": "^2.1",
"ext-readline": "*"
}
}