-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.08 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
{
"name": "inhere/qin",
"type": "framework",
"description": "the micro framework of the php 7, base on the swoole 4+",
"keywords": [
"library",
"swoole",
"framework",
"psr-15",
"psr-7"
],
"homepage": "https://github.com/inhere/qin",
"license": "MIT",
"authors": [
{
"name": "inhere",
"email": "[email protected]",
"homepage": "http://www.yzone.net/"
}
],
"require": {
"php": ">7.1.0",
"ext-json": "*",
"toolkit/errors": "~1.0",
"toolkit/web-utils": "~1.0",
"inhere/php-validate": "~2.0",
"php-comp/http-message": "~1.0",
"php-comp/lite-cache": "dev-master",
"php-comp/lite-db": "dev-master",
"php-comp/lite-activerecord": "dev-master",
"inhere/event": "~1.0",
"inhere/middleware": "~1.0",
"inhere/sroute": "dev-master",
"inhere/console": "dev-master",
"toolkit/toolkit": "dev-master",
"monolog/monolog": "^2.0"
},
"autoload": {
"files": [
"src/Helper/functions.php"
],
"classmap": [
"src/Qin.php"
],
"psr-4": {
"Qin\\": "src/"
}
}
}