forked from ArkEcosystem/php-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·72 lines (72 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lostlink/ark-crypto",
"description": "A simple PHP Cryptography Implementation for the Ark Blockchain.",
"keywords": [
"api",
"ark",
"blockchain",
"crypto",
"currency"
],
"license": "MIT",
"authors": [
{
"name": "Brian Faust",
"email": "[email protected]",
"homepage": "https://github.com/faustbrian"
}
],
"require": {
"php": "^7.4|^8.0",
"bitwasp/bitcoin": "dev-PHP_8.0",
"konceiver/binary": "^3.0",
"konceiver/bytebuffer": "^3.0",
"simplito/elliptic-php": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"graham-campbell/analyzer": "^3.0",
"illuminate/support": "^7.0.0",
"mockery/mockery": "^1.2",
"pestphp/drift": "^0.3.0",
"pestphp/pest": "^0.3.8",
"phpunit/phpunit": "^9.3.10",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^5.0.0"
},
"autoload": {
"psr-4": {
"Lostlink\\Ark\\Crypto\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Lostlink\\Ark\\Tests\\Crypto\\": "tests"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"format": [
"vendor/bin/php-cs-fixer fix"
],
"test": [
"./vendor/bin/pest --coverage --min=100 --coverage-html=.coverage --coverage-clover=coverage.xml"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": {
"0": {
"type": "vcs",
"url": "https://github.com/lostlink/bitcoin-php"
}
}
}