rbmq包
Showing
with
3489 additions
and
5 deletions
... | ... | @@ -9,7 +9,8 @@ |
"laravel/framework": "5.2.*", | ||
"ext-json": "*", | ||
"ext-curl": "*", | ||
"predis/predis": "^1.1" | ||
"predis/predis": "^1.1", | ||
"vladimir-yuldashev/laravel-queue-rabbitmq": "5.2" | ||
}, | ||
"require-dev": { | ||
"fzaninotto/faker": "~1.4", | ||
... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
vendor/php-amqplib/php-amqplib/CHANGELOG.md
0 → 100644
vendor/php-amqplib/php-amqplib/CREDITS
0 → 100644
vendor/php-amqplib/php-amqplib/LICENSE
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
vendor/php-amqplib/php-amqplib/README.md
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/php-amqplib/php-amqplib/composer.json
0 → 100644
{ | ||
"name": "php-amqplib/php-amqplib", | ||
"replace": { | ||
"videlalvaro/php-amqplib": "self.version" | ||
}, | ||
"type": "library", | ||
"description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.", | ||
"keywords": ["rabbitmq", "message", "queue"], | ||
"homepage": "https://github.com/php-amqplib/php-amqplib/", | ||
"authors": [ | ||
{ | ||
"name": "Alvaro Videla", | ||
"role": "Original Maintainer" | ||
}, | ||
{ | ||
"name": "John Kelly", | ||
"email": "johnmkelly86@gmail.com", | ||
"role": "Maintainer" | ||
}, | ||
{ | ||
"name": "Raúl Araya", | ||
"email": "nubeiro@gmail.com", | ||
"role": "Maintainer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.3.0", | ||
"ext-bcmath": "*", | ||
"ext-mbstring": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.8", | ||
"scrutinizer/ocular": "^1.1", | ||
"squizlabs/php_codesniffer": "^2.5" | ||
}, | ||
"suggest": { | ||
"ext-sockets": "Use AMQPSocketConnection" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"PhpAmqpLib\\": "PhpAmqpLib/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"PhpAmqpLib\\Tests\\Functional\\": "tests/Functional", | ||
"PhpAmqpLib\\Tests\\Unit\\": "tests/Unit" | ||
} | ||
}, | ||
"license": "LGPL-2.1", | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.7-dev" | ||
} | ||
} | ||
} |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
{ | ||
"name": "vladimir-yuldashev/laravel-queue-rabbitmq", | ||
"version": "5.2", | ||
"description": "RabbitMQ driver for Laravel Queue", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Vladimir Yuldashev", | ||
"email": "misterio92@gmail.com" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.5.9", | ||
"illuminate/support": "5.2.*", | ||
"illuminate/queue": "5.2.*", | ||
"php-amqplib/php-amqplib": "2.6.*" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"VladimirYuldashev\\LaravelQueueRabbitMQ": "src/" | ||
} | ||
}, | ||
"minimum-stability": "stable" | ||
} |
File mode changed
Please
register
or
sign in
to comment