forked from lanlin/codeigniter-swoole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 883 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
{
"name": "lanlin/codeigniter-swoole",
"type": "library",
"description": "A swoole adapter for Codeigniter 3.0+",
"keywords": ["Swoole", "Codeigniter", "Adapter", "Long Run", "Timers", "PHP", "Task"],
"homepage": "https://github.com/lanlin/codeigniter-swoole",
"suggests": "Using this adapter within CodeIgniter 3.0+ and Swoole 4.0.0+, PHP 7.0+ would be better.",
"license": "MIT",
"authors" : [
{
"name": "lanlin",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-swoole": "^4.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"swoole/ide-helper": "@dev"
},
"autoload": {
"files": [ "src/Helpers/magics.php" ],
"psr-4": {
"CiSwoole\\": "src/",
"CiSwooleTests\\": "tests/"
}
}
}