-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
34 lines (34 loc) · 929 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
{
"name": "boruta/bitcoin-trezor-vanity-address",
"type": "project",
"authors": [
{
"name": "Boruta",
"email": "sebastian@boruta.info"
}
],
"autoload": {
"psr-4": {
"Boruta\\BitcoinVanity\\": "src/"
}
},
"require": {
"php": ">=7.1",
"boruta/common-abstraction": "0.1.9",
"bitwasp/bitcoin": "0.0.35.1",
"ext-openssl": "*",
"ext-iconv": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"scripts": {
"download-dictionaries": [
"curl -o ./config/dictionaries/english.txt https://raw.githubusercontent.com/dwyl/english-words/master/words_alpha.txt",
"curl -o ./config/dictionaries/polish.txt https://raw.githubusercontent.com/turekj/msc/master/CheatAR/development/server/word-dictionary-importer/src/main/resources/scrabble-polish-words.txt"
],
"post-install-cmd": [
"@download-dictionaries"
]
}
}