-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 1 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
{
"name": "unreal4u/mqtt",
"description": "Complete MQTT v3.1.1 implementation for PHP >=7.1.x",
"keywords": [
"mqtt",
"php",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Camilo Sperberg",
"email": "[email protected]",
"homepage": "https://github.com/unreal4u/mqtt/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"unreal4u\\MQTT\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\unreal4u\\MQTT\\": "tests"
}
},
"require": {
"php": ">=7.1.0",
"ext-mbstring": "*",
"unreal4u/dummy-logger": "~1.0"
},
"require-dev": {
"monolog/monolog": "~1.17",
"squizlabs/php_codesniffer": "@stable",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "^9.3"
},
"scripts": {
"unit": [
"php vendor/bin/phpunit"
],
"cs": [
"php vendor/bin/phpcs src/ tests/ --standard=psr12 -sp"
],
"stan": [
"php vendor/bin/phpstan analyse -c phpstan.neon --level 7 src/"
]
}
}