-
Notifications
You must be signed in to change notification settings - Fork 317
/
Copy pathcomposer.json
39 lines (39 loc) · 908 Bytes
/
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
{
"name": "pinguo/php-msf",
"description": "Pinguo Micro Service Framework For PHP",
"license": "GPL",
"type": "library",
"homepage": "https://github.com/pinguo/php-msf",
"require": {
"php": ">=7.0",
"ext-swoole": ">=1.9.15",
"pinguo/php-log": ">=1.0.2",
"pinguo/php-context": ">=1.0.2",
"pinguo/php-aop": "1.0.0",
"league/plates": "3.3.0",
"hassankhan/config": "~0.10",
"flexihash/flexihash": "^2.0.0"
},
"suggest": {
"alcaeus/mongo-php-adapter": "^1.0",
"ext-amqp": ">=1.8.0",
"pda/pheanstalk": "PHP client for beanstalkd queue",
"kwn/php-rdkafka-stubs": "for kafka support"
},
"autoload": {
"psr-4": {
"PG\\MSF\\": "src/"
},
"files": [
"src/Helpers/Common.php",
"src/Macro.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
},
"config": {
"secure-http": false
}
}