-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 752 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 752 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
{
"name": "crazyxman/dubbo-php-framework",
"type": "library",
"description": "This is a php implementation of the dubbo framework",
"keywords": [
"dubbo",
"dubbo-php",
"rpc",
"php-rpc"
],
"homepage": "https://github.com/crazyxman/dubbo-php-framework",
"authors": [
{
"name": "crazyxman",
"email": "crazyxman01@gmail.com",
"homepage": "https://github.com/crazyxman"
}
],
"require": {
"php": ">=7.0.0",
"crazyxman/hessian-parser": ">=1.0.0",
"doctrine/annotations": "v1.8.0"
},
"autoload": {
"files": [
"src/rpc/Common/Helper/Functions.php"
],
"psr-4": {
"Dubbo\\": "src/rpc",
"Dubbo\\Agent\\": "src/agent",
"DubboDemo\\": "demo"
}
}
}