laravel-matt-client/composer.json

53 lines
1.0 KiB
JSON
Raw Normal View History

2019-09-15 23:12:38 +08:00
{
"name": "php-mqtt/laravel-client",
"description": "A wrapper for the php-mqtt/client library for Laravel.",
2019-09-15 23:12:38 +08:00
"type": "library",
"keywords": [
"mqtt",
"client",
"publish",
"subscribe",
"laravel"
],
"homepage": "https://github.com/php-mqtt/laravel-client",
"license": "MIT",
"authors": [
{
"name": "Marvin Mall",
"email": "marvin-mall@msn.com",
2019-09-15 23:12:38 +08:00
"role": "developer"
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/config": "~7.0|~8.0|~9.0",
"illuminate/support": "~7.0|~8.0|~9.0",
2021-01-11 02:49:27 +08:00
"php-mqtt/client": "^1.0"
2019-09-15 23:12:38 +08:00
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5"
},
2019-09-15 23:12:38 +08:00
"autoload": {
"psr-4": {
"PhpMqtt\\Client\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"PhpMqtt\\Client\\MqttClientServiceProvider"
],
"aliases": {
"MQTT": "PhpMqtt\\Client\\Facades\\MQTT"
}
2019-09-15 23:12:38 +08:00
}
},
"scripts": {
"fix:cs": "vendor/bin/phpcbf",
"test": [
"@test:cs"
],
"test:cs": "vendor/bin/phpcs"
2019-09-15 23:12:38 +08:00
}
}