introduces composer package structure
This commit is contained in:
parent
abc4e994f1
commit
edd8a7eb70
12 changed files with 20 additions and 0 deletions
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
* eol=lf
|
||||
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/vendor/
|
BIN
BOSH.php
BIN
BOSH.php
Binary file not shown.
17
composer.json
Normal file
17
composer.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"name": "thedevstack/php-xmpp",
|
||||
"description": "small php library to use XMPP",
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Thedevstack\\PhpXmpp\\": "src/"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "steckbrief",
|
||||
"email": "steckbrief@chefmail.de"
|
||||
}
|
||||
],
|
||||
"require": {}
|
||||
}
|
BIN
src/BOSH.php
Normal file
BIN
src/BOSH.php
Normal file
Binary file not shown.
Loading…
Reference in a new issue