From c42ec1d6fff0d147c5d552f1ffe93413dd5d5ec1 Mon Sep 17 00:00:00 2001 From: Laravel Shift Date: Tue, 14 Feb 2023 14:41:59 -0500 Subject: [PATCH] Laravel 10.x Compatibility (#35) * Bump dependencies for Laravel 10 * Update version constraints in composer.json --------- Co-authored-by: Marvin Mall --- composer.json | 98 +++++++++++++++++++++++++-------------------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/composer.json b/composer.json index 97a9a9b..97d726f 100644 --- a/composer.json +++ b/composer.json @@ -1,52 +1,52 @@ { - "name": "php-mqtt/laravel-client", - "description": "A wrapper for the php-mqtt/client library for Laravel.", - "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", - "role": "developer" - } - ], - "require": { - "php": "^7.4|^8.0", - "illuminate/config": "~7.0|~8.0|~9.0", - "illuminate/support": "~7.0|~8.0|~9.0", - "php-mqtt/client": "^1.0" - }, - "require-dev": { - "squizlabs/php_codesniffer": "^3.5" - }, - "autoload": { - "psr-4": { - "PhpMqtt\\Client\\": "src" - } - }, - "extra": { - "laravel": { - "providers": [ - "PhpMqtt\\Client\\MqttClientServiceProvider" - ], - "aliases": { - "MQTT": "PhpMqtt\\Client\\Facades\\MQTT" - } - } - }, - "scripts": { - "fix:cs": "vendor/bin/phpcbf", - "test": [ - "@test:cs" + "name": "php-mqtt/laravel-client", + "description": "A wrapper for the php-mqtt/client library for Laravel.", + "type": "library", + "keywords": [ + "mqtt", + "client", + "publish", + "subscribe", + "laravel" ], - "test:cs": "vendor/bin/phpcs" - } + "homepage": "https://github.com/php-mqtt/laravel-client", + "license": "MIT", + "authors": [ + { + "name": "Marvin Mall", + "email": "marvin-mall@msn.com", + "role": "developer" + } + ], + "require": { + "php": "^7.4|^8.0", + "illuminate/config": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0", + "php-mqtt/client": "^1.0" + }, + "require-dev": { + "squizlabs/php_codesniffer": "^3.5" + }, + "autoload": { + "psr-4": { + "PhpMqtt\\Client\\": "src" + } + }, + "extra": { + "laravel": { + "providers": [ + "PhpMqtt\\Client\\MqttClientServiceProvider" + ], + "aliases": { + "MQTT": "PhpMqtt\\Client\\Facades\\MQTT" + } + } + }, + "scripts": { + "fix:cs": "vendor/bin/phpcbf", + "test": [ + "@test:cs" + ], + "test:cs": "vendor/bin/phpcs" + } }