-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
44 lines (40 loc) · 1.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
{
"name": "ultraman/ultraman",
"description": "",
"homepage": "https://github.com/zoooozz/ultraman",
"type": "library",
"minimum-stability": "stable",
"require": {
"php": ">=7.1.0",
"monolog/monolog": ">=1.23.0",
"hprose/hprose-swoole": ">=2.0.0",
"league/climate": "~3.2"
},
"autoload": {
"psr-4": {
"ultraman\\Foundation\\" : "Foundation/",
"ultraman\\Cache\\" : "Cache/",
"ultraman\\Db\\" : "Db/",
"ultraman\\Common\\" : "Common/",
"ultraman\\Http\\" : "Http/",
"ultraman\\Log\\" : "Log/",
"ultraman\\Exception\\" : "Exception/",
"ultraman\\Yaf\\" : "Yaf/",
"ultraman\\Tcp\\" : "Tcp/"
},
"files": ["App.php"]
},
"scripts": {
"post-install-cmd": [
"composer dump -o"
],
"post-update-cmd": [
"composer dump -o"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}