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 11
/
composer.json
58 lines (58 loc) · 1.53 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
{
"name": "web3-php/cli",
"description": "Web3 PHP CLI is a blazing fast blockchain server for local development.",
"keywords": ["php", "web3", "ethereum", "json-rpc", "server", "local"],
"license": "MIT",
"authors": [
{
"name": "Nuno Maduro",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-pcntl": "*",
"ext-posix": "*",
"nunomaduro/termwind": "dev-master",
"spatie/once": "^3.0.1",
"symfony/console": "^5.3.11",
"symfony/process": "^5.3.12",
"web3-php/web3": "dev-master"
},
"require-dev": {
"pestphp/pest": "^1.21.0",
"friendsofphp/php-cs-fixer": "^3.3.2",
"phpstan/phpstan": "^1.2.0",
"symfony/var-dumper": "^5.3.11"
},
"autoload": {
"psr-4": {
"Web3\\Cli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"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"
]
},
"bin": [
"./bin/web3"
]
}