-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.74 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
{
"version": "1.0.0",
"name": "mbadev/ston_fi",
"description": "PHP Ston fi swap",
"homepage": "https://github.com/1351438/ston-fi",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"StonFi\\": "src/"
},
"files": [
"src/const/OpCodes.php"
]
},
"require": {
"php": ">=8.1",
"olifanton/ton": "^1.4",
"nyholm/psr7": "^1.8",
"guzzlehttp/guzzle": "^7.8",
"http-interop/http-factory-guzzle": "^1.2",
"php-http/guzzle7-adapter": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^3.0",
"ext-curl": "*"
},
"scripts": {
"test:unit": "XDEBUG_MODE=coverage phpunit --testsuite unit",
"test:cr": "XDEBUG_MODE=coverage phpunit --coverage-html build/coverage-all",
"test:unit:cr": "XDEBUG_MODE=coverage phpunit --testsuite unit --coverage-html build/coverage-unit",
"test:integration": "phpunit --testsuite integration --no-coverage",
"phplint": "phplint -c .phplint.yml",
"phpstan": "phpstan analyse -c phpstan.neon --ansi --xdebug",
"test": [
"@test:unit"
],
"checks": [
"@phplint",
"@phpstan",
"@test"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"php-http/discovery": false
}
},
"authors": [
{
"name": "MBA"
}
],
"require-dev": {
"phpunit/phpunit": "^10.5"
}
}