-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
41 lines (41 loc) · 1017 Bytes
/
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
{
"name": "akondas/php-blockchain",
"type": "library",
"description": "Minimal working blockchain implemented in PHP",
"license": "MIT",
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"react/http": "^0.8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.6"
},
"autoload": {
"psr-4": {
"Blockchain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Blockchain\\": "tests/"
}
},
"scripts": {
"build": [
"@check-cs",
"@tests"
],
"fix-cs": "php-cs-fixer fix --diff --ansi",
"check-cs": "php-cs-fixer fix --dry-run --diff --ansi",
"phpstan": "vendor/bin/phpstan analyse src tests --level=max",
"tests": "vendor/bin/phpunit"
}
}