This commit is contained in:
2022-10-23 01:39:27 +02:00
parent 8c17aab483
commit 1929b84685
4130 changed files with 479334 additions and 0 deletions

45
vendor/valga/fbns-react/composer.json vendored Executable file
View File

@@ -0,0 +1,45 @@
{
"name": "valga/fbns-react",
"description": "A PHP client for the FBNS built on top of ReactPHP",
"keywords": [
"FBNS",
"Client",
"PHP"
],
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Abyr Valg",
"email": "valga.github@abyrga.ru"
}
],
"autoload": {
"psr-4": {
"Fbns\\Client\\": "src/"
}
},
"require": {
"php": "~5.6|~7.0",
"ext-mbstring": "*",
"ext-zlib": "*",
"evenement/evenement": "~2.0|~3.0",
"react/event-loop": "^0.4.3",
"react/promise": "~2.0",
"react/socket": "~0.8",
"binsoul/net-mqtt": "~0.2",
"psr/log": "~1.0"
},
"require-dev": {
"monolog/monolog": "~1.23",
"friendsofphp/php-cs-fixer": "~2.4"
},
"suggest": {
"ext-event": "For more efficient event loop implementation.",
"ext-gmp": "To be able to run this code on x86 PHP builds."
},
"scripts": {
"codestyle": "php-cs-fixer fix --config=.php_cs"
}
}