-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
53 lines (53 loc) · 1.19 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
{
"name": "extraton/php-ton-client",
"description": "Extraton, PHP TON client",
"type": "library",
"license": "Apache-2.0",
"homepage": "https://extraton.io/",
"keywords": [
"extraton",
"freeton",
"ton",
"ton crystal",
"dapp"
],
"authors": [
{
"name": "Maxim Karanaev",
"email": "imaxvx@gmail.com",
"homepage": "https://github.com/maxvx"
},
{
"name": "qwertys318",
"homepage": "https://github.com/qwertys318"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-ffi": "*",
"ext-json": "*",
"ext-zlib": "*",
"guzzlehttp/promises": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"friendsofphp/php-cs-fixer": "^2.18",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": {
"Extraton\\TonClient\\": "src/",
"Extraton\\Tests\\Unit\\TonClient\\": "tests/Unit/",
"Extraton\\Tests\\Integration\\TonClient\\": "tests/Integration/"
}
},
"scripts": {
"download-ton-sdk-library": "Extraton\\TonClient\\Composer\\Scripts::downloadLibrary",
"post-update-cmd": [
"@download-ton-sdk-library"
],
"post-install-cmd": [
"@download-ton-sdk-library"
]
}
}