-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 804 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 804 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
{
"name": "yeaha/lysine",
"description": "RESTFul Web Framework",
"keywords": ["framework", "mvc", "swoole", "restful", "orm", "datamapper"],
"homepage": "https://github.com/yeaha/Lysine2",
"license": "MIT",
"authors": [
{
"name": "YangYi",
"email": "yangyi.cn.gz@gmail.com",
"homepage": "https://github.com/yeaha"
}
],
"require": {
"php": ">=5.5.0"
},
"suggest": {
"monolog/monolog": "Allows more advanced logging of the application flow"
},
"archive": {
"exclude": ["/examples", "/tests"]
},
"autoload": {
"psr-4": {"Test\\": "./tests"},
"files": ["src/loader.php"]
},
"repositories": [
{
"packagist": false
}
]
}