-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·67 lines (67 loc) · 2.07 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
{
"name": "shy/framework",
"description": "The Shy Framework.",
"keywords": [
"framework"
],
"license": "MIT",
"homepage": "https://github.com/lynncho/shy",
"support": {
"issues": "https://github.com/lynncho/shy/issues",
"source": "https://github.com/lynncho/shy"
},
"authors": [
{
"name": "Lynn Cho",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"ext-json": "*",
"psr/log": "1.1.4",
"psr/container": "1.0.0",
"psr/simple-cache": "1.0.1",
"psr/http-message": "1.0.1",
"symfony/http-foundation": "3.4.47",
"symfony/yaml": "3.4.47",
"symfony/polyfill-ctype": "v1.19.0",
"symfony/polyfill-php70": "v1.19.0",
"symfony/polyfill-mbstring": "v1.19.0",
"smarty/smarty": "3.1.45",
"workerman/workerman": "3.5.31"
},
"require-dev": {
"phpunit/phpunit": "5.7.27"
},
"autoload": {
"files": [
"shy/Function/core.php",
"shy/Function/helper.php",
"shy/Http/Function/helper.php"
],
"psr-4": {
"App\\": "app/",
"Shy\\": "shy/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"suggest": {
"ext-pcntl": "Required to use the socket.",
"ext-posix": "Required to use the socket.",
"ext-event": "Required in high concurrence.",
"ext-redis": "Required to use the redis.",
"ext-swoole": "Required to use the swoole socket.",
"smarty/smarty": "Required to use smarty.",
"phpmailer/phpmailer": "Required to use email.",
"swiftmailer/swiftmailer": "Required to use email.",
"workerman/workerman": "Required to use the socket. Support version ^3.5",
"illuminate/database": "Required to use the database. Support version <= 5.5.44",
"aliyunlog/aliyun-log-php-sdk": "Required to use the Aliyun log. Support version <= 0.6.1"
},
"prefer-stable": true
}