-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
executable file
·63 lines (63 loc) · 1.46 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
{
"name": "arkecosystem/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": "^8.2",
"protonlabs/bitcoin": "^1.0",
"simplito/elliptic-php": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"graham-campbell/analyzer": "^3.1",
"illuminate/support": "^8.8",
"pestphp/pest": "^1.23",
"pestphp/pest-plugin-parallel": "^1.2"
},
"autoload": {
"psr-4": {
"ArkEcosystem\\Crypto\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ArkEcosystem\\Tests\\Crypto\\": "tests"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"format": [
"vendor/bin/php-cs-fixer fix"
],
"test": [
"./vendor/bin/pest --parallel"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}