-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
52 lines (52 loc) · 1.13 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
{
"name": "fend/fend",
"description": "Fend PHP framework",
"license": "Apache-2.0",
"keywords": [
"php",
"swoole",
"fend",
"php-fpm"
],
"authors": [
{
"name": "ChangLong.Xu",
"email": "xcl_rockman@qq.com",
"homepage": "http://www.fireidea.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Fend\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Fend\\": "./src",
"Test\\App\\": "./tests/app"
}
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"ext-openssl": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5.14",
"swoole/ide-helper": "~4.4.0"
},
"suggest": {
"ext-swoole": "Swoole Server is Fasted plugin",
"ext-pdo": "Required to use MySQL Client.",
"ext-pdo_mysql": "Required to use MySQL Client.",
"ext-redis": "Required to use Redis Client.",
"ext-rdkafka": "for kafka communicate",
"smarty/smarty": "smarty template",
"symfony/console": "Symfony Console",
"nikic/fast-route": "fastRouter for Router"
}
}