forked from akondas/php-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.05 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
{
"name": "akondas/php-blockchain",
"type": "library",
"description": "Minimal working blockchain implemented in PHP",
"license": "MIT",
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"react/http": "^0.8.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symplify/easy-coding-standard": "^3.2",
"phpstan/phpstan": "^0.10.3"
},
"autoload": {
"psr-4": {
"Blockchain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Blockchain\\": "tests/"
}
},
"scripts": {
"build": [
"@check-cs",
"@tests"
],
"fix-cs": "vendor/bin/ecs check src tests --fix --config=coding-standard.neon",
"check-cs": "vendor/bin/ecs check src tests --config=coding-standard.neon",
"phpstan": "vendor/bin/phpstan analyse src tests --level=max",
"tests": "vendor/bin/phpunit"
}
}