-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json-repositories
103 lines (103 loc) · 3.11 KB
/
composer.json-repositories
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
92
93
94
95
96
97
98
99
100
101
102
103
{
"autoload": {
"psr-4": {
"app\\": "app/",
"src\\": "src/",
"api\\": "api/",
"Func\\X\\": "vendor/wuding/php-func/src/X/",
"Func\\": "vendor/wuding/php-func/src/",
"Pkg\\": "vendor/wuding/php-pkg/src",
"Ext\\": "vendor/wuding/php-ext/src/",
"MagicCube\\": "vendor/wuding/magic-cube/src",
"NewUI\\": "vendor/wuding/new-ui/src",
"Topdb\\": "vendor/wuding/topdb/src"
},
"files": [
"vendor/wuding/php-func/src/Func.php",
"vendor/wuding/php-ext/src/Ext.php"
]
},
"repositories": [
{
"type": "package",
"package": {
"name": "wuding/php-func",
"version": "dev-develop",
"source": {
"url": "Benny@localhost:root/php-func.git",
"type": "git",
"reference": "origin/develop"
}
}
},
{
"type": "package",
"package": {
"name": "wuding/php-pkg",
"version": "dev-master",
"source": {
"url": "Benny@localhost:root/php-pkg.git",
"type": "git",
"reference": "origin/master"
}
}
},
{
"type": "package",
"package": {
"name": "wuding/php-ext",
"version": "dev-develop",
"source": {
"url": "Benny@localhost:root/php-ext.git",
"type": "git",
"reference": "origin/develop"
}
}
},
{
"type": "package",
"package": {
"name": "wuding/magic-cube",
"version": "dev-develop",
"source": {
"url": "Benny@localhost:root/magic-cube.git",
"type": "git",
"reference": "origin/develop"
}
}
},
{
"type": "package",
"package": {
"name": "wuding/new-ui",
"version": "dev-develop",
"source": {
"url": "Benny@localhost:root/new-ui.git",
"type": "git",
"reference": "origin/develop"
}
}
},
{
"type": "package",
"package": {
"name": "wuding/topdb",
"version": "dev-develop",
"source": {
"url": "Benny@localhost:root/topdb.git",
"type": "git",
"reference": "origin/develop"
}
}
}
],
"require": {
"wuding/php-func": "dev-develop",
"wuding/php-pkg": "dev-master",
"wuding/php-ext": "dev-develop",
"wuding/magic-cube": "dev-develop",
"wuding/new-ui": "dev-develop",
"wuding/topdb": "dev-develop",
"geoip/geoip": "^1.17"
}
}