forked from swoft-cloud/swoft-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 980 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
42
43
44
{
"name": "swoft/framework",
"type": "library",
"keywords": ["php", "swoole", "swoft"],
"description": "microservice framework base on swoole",
"license": "apache2.0",
"require": {
"phpseclib/phpseclib": "2.0.0",
"doctrine/annotations": "^1.4",
"php-di/phpdoc-reader": "^2.0",
"monolog/monolog": "^1.23",
"vlucas/phpdotenv": "^2.4",
"psr/http-message": "^1.0",
"http-interop/http-server-middleware": "^1.0"
},
"autoload": {
"classmap": [
],
"psr-4": {
"Swoft\\":"src/"
},
"files": [
"src/Helper/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Swoft\\Test\\": "test/TestCases"
}
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
},
"require-dev": {
"eaglewu/swoole-ide-helper": "dev-master",
"phpunit/phpunit": "^5.7"
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml"
}
}