-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathcomposer.json
50 lines (50 loc) · 1.03 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
45
46
47
48
49
50
{
"name": "swoft/framework",
"type": "library",
"version": "v2.0.11",
"keywords": [
"php",
"swoole",
"swoft",
"swoft-framework"
],
"description": "swoft framework component",
"homepage": "https://github.com/swoft-cloud/swoft-framework",
"license": "Apache-2.0",
"require": {
"php": ">=7.1",
"swoft/config": "~2.0.0",
"swoft/annotation": "~2.0.0",
"swoft/bean": "~2.0.0",
"swoft/event": "~2.0.0",
"swoft/console": "~2.0.0",
"swoft/error": "~2.0.0",
"swoft/log": "~2.0.0",
"swoft/aop": "~2.0.0",
"swoft/server": "~2.0.0",
"swoft/stdlib": "~2.0.0"
},
"autoload": {
"classmap": [
"src/Swoft.php"
],
"psr-4": {
"Swoft\\": "src/"
},
"files": [
"src/Helper/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"SwoftTest\\Unit\\": "test/unit/",
"SwoftTest\\Testing\\": "test/testing/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.0"
},
"scripts": {
"test": "php run.php -c phpunit.xml"
}
}