Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlorenz committed May 6, 2015
0 parents commit 9b4cd70
Show file tree
Hide file tree
Showing 21 changed files with 1,316 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/vendor/
.idea
old*
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# reactMqtt

reactMqtt is a mqtt client library PHP. Its based on the reactPHP socket-client and added the mqtt protocol specific functions

### Notice - (May 6th, 2015)
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "oliverlorenz/reactphp-mqtt",
"description": "MQTT Bindings for reactphp",
"keywords": ["mqtt", "IoT"],
"authors": [
{
"name": "Oliver Lorenz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"oliverlorenz\\reactphpmqtt\\": "src"
}
},
"minimum-stability": "dev",
"require": {
"react/react": "0.5.*@dev"
}
}
Loading

0 comments on commit 9b4cd70

Please sign in to comment.