forked from comsince/ThinkSNS-4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
107 lines (107 loc) · 3.18 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "medz/thinksns",
"type": "project",
"description": "A extensable social networing system.",
"keywords": ["sns", "think", "ts", "thinksns", "t4", "ts4"],
"homepage": "http://www.thinksns.com",
"license": "Private",
"license-url": "./LICENSE",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "智艺创想",
"homepage": "http://www.zhiyicx.com",
"role": "Development company"
},
{
"name": "The ThinkSNS Team",
"email": "[email protected]",
"homepage": "http://www.thinksns.com",
"role": "R & D team"
},
{
"name": "Bin Qiao",
"homepage": "http://demo.thinksns.com/ts4/index.php?app=public&mod=Profile&act=index&uid=32179",
"role": "Developer"
},
{
"name": "while",
"homepage": "http://demo.thinksns.com/ts4/index.php?app=public&mod=Profile&act=index&uid=32521",
"role": "Developer"
},
{
"name": "Seven Du",
"email": "[email protected]",
"homepage": "http://medz.cn",
"role": "Developer"
},
{
"name": "陈然",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "medz/vendor-pack-pinyin",
"version": "dev-master",
"dist": {
"url": "https://github.com/jifei/Pinyin/archive/master.zip",
"type": "zip"
},
"autoload": {
"classmap": ["Pinyin.php"]
}
}
}
],
"require": {
"php": ">=5.3.12",
"ext-curl": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mcrypt": "*",
"ext-zlib": "*",
"ext-zip": "*",
"medz/vendor-pack-pinyin": "@dev",
"medz/filesystem": "~1.0",
"medz/emoji-format": "^1.0",
"symfony/polyfill-mbstring": "~1.0",
"illuminate/database": "4.1.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.11"
},
"config": {
"vendor-dir": "src/vendor/",
"preferred-install": "dist"
},
"autoload": {
"files": [
"src/old/OpenSociax/functions.inc.php"
],
"classmap": [
"addons/",
"src/Ts.php",
"src/old/OpenSociax/"
],
"psr-4": {
"Ts\\": "src/",
"App\\": "apps/"
}
},
"support": {
"email": "[email protected]",
"forum": "http://demo.thinksns.com",
"source": "https://github.com/medz/ThinkSNS-4.git"
},
"suggest":{
"medz/vendor-pack-pinyin": "This is a converted Chinese characters spelling library.",
"medz/filesystem": "Medz Filesystem Component.",
"symfony/polyfill-mbstring": "This component provides a partial, native PHP implementation for the[Mbstring](http://php.net/mbstring) extension."
}
}