-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.49 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
{
"name": "dfelton/process-monitor",
"version": "0.0.1",
"description": "Scrappy process monitoring solution",
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Darren Felton",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"repositories": {
"kobens-currency": {
"type": "git",
"url": "[email protected]:dfelton/kobens-currency"
},
"kobens-http": {
"type": "git",
"url": "[email protected]:dfelton/kobens-http"
},
"kobens-exchange": {
"type": "git",
"url": "[email protected]:dfelton/kobens-exchange"
},
"kobens-gemini": {
"type": "git",
"url": "[email protected]:dfelton/kobens-gemini"
},
"kobens-core": {
"type": "git",
"url": "[email protected]:dfelton/kobens-core"
},
"kobens-math": {
"type": "git",
"url": "[email protected]:dfelton/kobens-math"
}
},
"require": {
"kobens/kobens-core": "dev-master",
"kobens/kobens-currency": "^4.0.1",
"kobens/kobens-gemini": "dev-master",
"kobens/kobens-math": "^2.0",
"symfony/console": "^4.2",
"zendframework/zend-config": "^3.4"
},
"autoload": {
"psr-4": {
"Kobens\\Monitor\\": "src"
}
},
"config": {
"sort-packages": true
}
}