-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
89 lines (89 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "olifanton/ton",
"description": "PHP library for The Open Network blockchain",
"homepage": "https://github.com/olifanton/ton",
"type": "library",
"license": "MIT",
"keywords": [
"ton",
"blockchain",
"the open network",
"toncenter",
"olifanton"
],
"autoload": {
"psr-4": {
"Olifanton\\Ton\\": "src/Olifanton/Ton/"
},
"files": [
"src/stack.php"
]
},
"autoload-dev": {
"psr-4": {
"Olifanton\\Ton\\Tests\\": "tests/Olifanton/Ton/Tests/",
"Olifanton\\Ton\\IntegrationTests\\": "tests/Olifanton/Ton/IntegrationTests/"
}
},
"authors": [
{
"name": "Roman Zaycev",
"email": "box@romanzaycev.ru",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-sodium": "*",
"olifanton/interop": "^1.4",
"olifanton/mnemonic": "^1.0.2",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^2.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"
},
"require-dev": {
"cakephp/cache": "^5.0",
"guzzlehttp/guzzle": "^7.5",
"http-interop/http-factory-guzzle": "^1.2",
"jetbrains/phpstorm-attributes": "^1.0",
"mockery/mockery": "^1.5",
"overtrue/phplint": "9.3.1",
"php-http/guzzle7-adapter": "^1.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"vlucas/phpdotenv": "^5.4"
},
"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"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"php-http/discovery": false
}
}
}