forked from imiphp/imi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.19 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.19 KB
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
{
"name": "yurunsoft/imi",
"type": "library",
"license": "Apache-2.0",
"description": "基于 Swoole 开发的协程 PHP 开发框架,常驻内存、协程异步,致力于丰富框架文档,上手容易,让开发者跟使用传统 MVC 框架一样顺手",
"require": {
"php": ">=7.1.0",
"ext-swoole": ">=4.3",
"yurunsoft/swoole-co-pool": "^1.1.0",
"yurunsoft/doctrine-annotations": "^1.73.0",
"psr/log": "~1.0",
"psr/container": "~1.0",
"psr/http-message": "~1.0",
"psr/http-server-middleware": "~1.0",
"psr/simple-cache": "~1.0",
"vlucas/phpdotenv": "~2.5"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4" : {
"Imi\\" : "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Imi\\Test\\": "tests/unit/"
}
},
"prefer-stable": true,
"bin": [
"bin/imi"
],
"scripts": {
"test": "./tests/run",
"install-test": "php --ri swoole && composer install && cd ./tests && composer install && cd ../ && composer test"
}
}