-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
91 lines (91 loc) · 2.38 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "kobens/kobens-gemini",
"description": "For facilitating trades on the Gemini exchange.",
"type": "project",
"license": "BSD-3-Clause",
"minimum-stability": "stable",
"authors": [
{
"name": "Darren Felton",
"email": "[email protected]"
}
],
"repositories": {
"kobens-core": {
"type": "vcs",
"url": "https://github.com/dfelton/kobens-core"
},
"kobens-currency": {
"type": "vcs",
"url": "https://github.com/dfelton/kobens-currency"
},
"kobens-exchange": {
"type": "vcs",
"url": "https://github.com/dfelton/kobens-exchange"
},
"kobens-math": {
"type": "vcs",
"url": "https://github.com/dfelton/kobens-math"
},
"kobens-http": {
"type": "vcs",
"url": "https://github.com/dfelton/kobens-http"
}
},
"require": {
"php": "^7.4",
"ext-bcmath": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"amphp/websocket-client": "^1.0",
"kobens/kobens-core": "^3",
"kobens/kobens-currency": "^4.3",
"kobens/kobens-exchange": "^3",
"kobens/kobens-http": "^1",
"kobens/kobens-math": "^2.0",
"symfony/console": "^4.2",
"zendframework/zend-config": "^3.2",
"zendframework/zend-db": "^2.9"
},
"require-dev": {
"zendframework/zend-debug": "^2.6",
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Kobens\\Gemini\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"KobensTest\\Gemini\\": "test"
}
},
"config": {
"platform": {
"php": "7.4"
},
"github-protocols": [
"ssh"
],
"preferred-install": {
"kobens/*": "source",
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"phpunit": [
"phpunit -v test/Unit"
],
"phpcs": [
"phpcs --standard=PSR12 --exclude=PSR12.Files.FileHeader,Generic.Files.LineLength --cache src"
],
"phpcbf": [
"phpcbf --standard=PSR12 src"
]
}
}