introduces composer package structure

This commit is contained in:
Tristan 2025-01-09 15:09:51 +01:00
parent abc4e994f1
commit edd8a7eb70
12 changed files with 20 additions and 0 deletions

2
.gitattributes vendored Normal file
View file

@ -0,0 +1,2 @@
* eol=lf

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/vendor/

BIN
BOSH.php

Binary file not shown.

17
composer.json Normal file
View 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

Binary file not shown.