Initial commit

This commit is contained in:
2024-09-13 14:11:34 +02:00
commit a14f7077bb
31 changed files with 1901 additions and 0 deletions

38
composer.json Normal file
View File

@ -0,0 +1,38 @@
{
"name": "pdahal/php-xmpp",
"description": "PHP library for XMPP based on `xmppo/xmpp-php`",
"version": "1.0.0",
"keywords": [
"php",
"xmpp",
"jabber",
"library"
],
"license": "MIT",
"authors": [
{
"name": "Prabin Dahal",
"email": "mr.prabin@gmail.com"
},
{
"name": "Marko Dupor",
"email": "marko.dupor@gmail.com"
}
],
"type": "project",
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "~11.0",
"phpmd/phpmd": "~2.15",
"squizlabs/php_codesniffer": "~3.10",
"friendsofphp/php-cs-fixer": "~3.64",
"rector/rector": "~1.2"
},
"autoload": {
"psr-4": {
"Pdahal\\Xmpp\\": "src/"
}
}
}