-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 867 Bytes
/
composer.json
File metadata and controls
47 lines (47 loc) · 867 Bytes
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
{
"name": "simps/mqtt-cli",
"description": "PHPMQTT CLI Tools",
"keywords": [
"php",
"simps",
"mqtt",
"swoole",
"client",
"coroutine",
"mqtt_cli",
"mqtt_client",
"mqtt_protocol",
"mqtt3.1",
"mqtt5.0"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Lu Fei",
"email": "lufei@simps.io"
}
],
"require": {
"symfony/console": "^5.2",
"simps/mqtt": "^1.3 || ^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Simps\\MQTTCLI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpsTest\\MQTTCLI\\": "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"
},
"bin": [
"bin/mqtt"
]
}