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
36 lines (36 loc) · 1.1 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.1 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
{
"name": "yurunsoft/imi",
"type": "library",
"license": "Apache-2.0",
"description": "基于 Swoole 开发的协程 PHP 开发框架,常驻内存、协程异步,致力于丰富框架文档,上手容易,让开发者跟使用传统 MVC 框架一样顺手",
"require": {
"php": ">=7.1.0",
"yurunsoft/doctrine-annotations": ">=1.6,<1.7,!=1.6.x-dev",
"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/"
}
},
"scripts": {
"test": "php ./tests/phpunit -c ./tests/phpunit.xml",
"install-test": "php --ri swoole && composer install && cd ./tests && composer install && cd ../ && composer test"
}
}