forked from swoft-cloud/swoft-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 873 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
40
41
{
"name": "swoft/rpc",
"type": "library",
"keywords": [
"php",
"swoole",
"swoft",
"rpc"
],
"description": "microservice framework base on swoole",
"license": "Apache-2.0",
"require": {
"swoft/framework": "^1.0"
},
"require-dev": {
"swoft/swoole-ide-helper": "dev-master",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Swoft\\Rpc\\": "src/"
},
"files": [
"src/Helper/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"SwoftTest\\Rpc\\": "test/Cases"
}
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
],
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml"
}
}