-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
61 lines (61 loc) · 1.29 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "simps/mqtt",
"description": "MQTT Protocol Analysis and Coroutine Client for PHP",
"keywords": [
"php",
"simps",
"mqtt",
"swoole",
"client",
"coroutine",
"mqtt_client",
"mqtt_protocol",
"mqtt3.1",
"mqtt5.0"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Lu Fei",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^8.5",
"swoole/ide-helper": ">=4.4.20",
"simps/mqtt-cli": "*",
"phpstan/phpstan": "^1.0"
},
"suggest": {
"ext-swoole": "The ext-swoole >= v4.4.20 or v4.5.3 needs to be loaded when using the MQTT Client."
},
"autoload": {
"psr-4": {
"Simps\\MQTT\\": "src/"
},
"files": [
"src/constants.php"
]
},
"autoload-dev": {
"psr-4": {
"SimpsTest\\MQTT\\": "tests/"
}
},
"scripts": {
"cs-check": "/usr/bin/env php ./vendor/bin/php-cs-fixer fix --dry-run",
"cs-fix": "/usr/bin/env php ./vendor/bin/php-cs-fixer fix",
"test": "./tests/co-phpunit --colors=always",
"analyse": "phpstan analyse --memory-limit 4096M -c phpstan.neon"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}