forked from jorijn/bitcoin-dca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.15 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
{
"name": "jorijn/bitcoin-dca",
"description": "Tool for automatically buying and withdrawing Bitcoin",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Jorijn Schrijvershof",
"email": "jorijn@jorijn.com"
}
],
"require": {
"symfony/console": "^5.0",
"symfony/dotenv": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/yaml": "^5.0",
"symfony/config": "^5.0",
"ext-curl": "*",
"ext-json": "*",
"ext-iconv": "*",
"ext-bcmath": "*",
"bitwasp/bitcoin": "^1.0",
"symfony/event-dispatcher": "^5.0",
"monolog/monolog": "^2.0",
"symfony/http-client": "^5.0",
"symfony/serializer": "^5.3",
"symfony/property-access": "^5.3"
},
"autoload": {
"psr-4": {
"Jorijn\\Bitcoin\\Dca\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Jorijn\\Bitcoin\\Dca\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox"
},
"require-dev": {
"phpunit/phpunit": "^9.1"
}
}