-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.03 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.03 KB
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
{
"name": "seregazhuk/etherscan-api",
"description": "PHP client for the Etherscan API",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Sergey Zhuk",
"email": "seregazhuk88@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.0",
"php-http/guzzle7-adapter": "^1.1",
"php-http/httplug": "^2.0",
"phpseclib/phpseclib": "^3.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"seregazhuk\\EtherscanApi\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"seregazhuk\\EtherscanApi\\Tests\\": "tests/"
}
},
"scripts": {
"test:unit": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --testsuite unit",
"test:cr": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html build/coverage-all",
"test:unit:cr": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --testsuite unit --coverage-html build/coverage-unit",
"test:integration": "phpunit --testsuite integration --no-coverage",
"pint-fix": "./vendor/bin/pint",
"pint": "./vendor/bin/pint --test",
"rector": "./vendor/bin/rector",
"stan": "phpstan analyse -c phpstan.neon --ansi",
"test": [
"@test:unit"
],
"checks": [
"@test",
"@rector",
"@stan",
"@pint-fix"
]
},
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"php-http/discovery": false
}
},
"require-dev": {
"laravel/pint": "^1.20",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.1.0",
"rector/rector": "^1.2"
}
}