Skip to content

Commit

Permalink
Update supported PHP and Laravel versions (#57)
Browse files Browse the repository at this point in the history
* Remove PHP 7.4 and EOL Laravel versions

* Build against PHP 8.3
  • Loading branch information
Namoshek committed Apr 10, 2024
1 parent 54b2fc0 commit 759b70c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:

strategy:
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2']
php-version: ['8.0', '8.1', '8.2', '8.3']
include:
- php-version: '8.2'
- php-version: '8.3'
run-sonarqube-analysis: true

steps:
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/config": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"php": "^8.0",
"illuminate/config": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"php-mqtt/client": "^1.3.0|^2.0"
},
"require-dev": {
Expand Down

2 comments on commit 759b70c

@idham695
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can i ask you a question ?

why mqtt show this error [65] Transferring data over socket failed: Sending data over the socket failed. Has it been closed?

and how to solve that

i found a solutions and i use $clientId = 'ClientId_'.substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 20); to randomize that client id but that error still occured

@Namoshek
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please open an issue, commit comments are not the right place for this.

Please sign in to comment.