Initial commit

This commit is contained in:
2021-01-18 16:46:31 +03:00
commit f33a9dc226
9 changed files with 313 additions and 0 deletions

29
composer.json Normal file
View File

@ -0,0 +1,29 @@
{
"name": "nsq/nsq-bundle",
"type": "library",
"description": "Symfony Integration for NsqPHP",
"homepage": "https://github.com/nsqphp/NsqBundle",
"license": "MIT",
"authors": [
{
"name": "Konstantin Grachev",
"email": "me@grachevko.ru"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"nsq/nsq": "0.1",
"symfony/framework-bundle": "^5.0",
"symfony/messenger": "^5.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13"
},
"autoload": {
"psr-4": {
"NsqPHP\\NsqBundle\\": "src/"
}
},
"minimum-stability": "dev"
}