-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
42 lines (42 loc) · 914 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
{
"name": "simple-swoole/simps",
"description": "A simple, lightweight and high-performance PHP coroutine framework.",
"type": "library",
"license": "Apache-2.0",
"keywords": [
"php",
"swoole",
"coroutine",
"simple",
"simps",
"mqtt"
],
"authors": [
{
"name": "Lu Fei",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"ext-swoole": ">=4.4",
"nikic/fast-route": "^1.3",
"simple-swoole/utils": "^1.0",
"simps/mqtt": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.9"
},
"autoload": {
"psr-4": {
"Simps\\": "src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"cs-fix": "php-cs-fixer fix $1"
}
}