forked from gnikyt/Blockchain-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 707 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 707 Bytes
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
{
"name": "ohmybrew/blockchain-php",
"type": "library",
"description": "Blockchain example implemented in PHP",
"keywords": ["blockchain", "php"],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Tyler King",
"email": "tyler.n.king@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"symfony/options-resolver": "^4.1@dev"
},
"require-dev":{
"phpunit/phpunit": "~6.0",
"squizlabs/php_codesniffer": "^3.0",
"satooshi/php-coveralls": "~1.0",
"phpdocumentor/phpdocumentor": "3.*"
},
"autoload": {
"psr-4": {
"OhMyBrew\\Blockchain\\": "src/OhMyBrew/Blockchain"
}
},
"config": { "bin-dir": "bin" }
}