Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
anoxia committed Dec 22, 2018
0 parents commit b8d5be2
Show file tree
Hide file tree
Showing 21 changed files with 2,438 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.*
!.gitignore
.idea/
*.log
nbproject/
.htaccess
vendor/
Vagrantfile
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

27 changes: 27 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "bee-framework/mq",
"description": "Bee框架MQ组件",
"require": {
"php": "^7.1",
"ext-swoole": "^4.0",
"ext-amqp": "*",
"bee-framework/util": "^1.0",
"bee-framework/process": "^1.0",
"bee-framework/serialize": "^1.0"
},
"require-dev": {
"phalcon/ide-stubs": "*",
"eaglewu/swoole-ide-helper": "master-dev",
"phpunit/phpunit": "^7.4"
},
"autoload": {
"psr-4": {
"Bee\\Mq\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bee\\Mq\\Test\\": "tests/"
}
}
}
Loading

0 comments on commit b8d5be2

Please sign in to comment.