-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 801 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 801 Bytes
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
{
"name": "inhere/middleware",
"type": "library",
"description": "the psr-15, psr-7 middleware library of the php",
"keywords": [
"library",
"middleware",
"middleware-dispatcher",
"psr-15",
"psr-7"
],
"homepage": "https://github.com/inhere/php-middleware",
"license": "MIT",
"authors": [
{
"name": "inhere",
"email": "in.798@qq.com",
"homepage": "http://www.yzone.net/"
}
],
"require": {
"php": ">7.1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"inhere/http": "^1.0"
},
"autoload": {
"psr-4": {
"Inhere\\Middleware\\": "src/"
}
},
"suggest": {
"inhere/sroute": "Very lightweight and fast router",
"inhere/php-validate": "Very lightweight data validate tool library"
}
}