This repository has been archived by the owner on Feb 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathcomposer.json
55 lines (55 loc) · 1.49 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
{
"name": "web3-php/web3",
"description": "Web3 PHP is a supercharged PHP API client that allows you to interact with a generic Ethereum RPC.",
"keywords": ["php", "web3", "ethereum", "json-rpc", "api", "client"],
"license": "MIT",
"authors": [
{
"name": "Nuno Maduro",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-bcmath": "*",
"guzzlehttp/guzzle": "^7.4.1",
"phpseclib/phpseclib": "^3.0.13"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6.0",
"mockery/mockery": "^1.5.0",
"pestphp/pest": "^2.0.0",
"phpstan/phpstan": "^1.4.6",
"symfony/var-dumper": "^5.4.3"
},
"autoload": {
"psr-4": {
"Web3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "PHP_CS_FIXER_IGNORE_ENV=true php-cs-fixer fix -v",
"test:lint": "PHP_CS_FIXER_IGNORE_ENV=true php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}