summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-11-07 10:40:35 +0100
committerRemi Collet <remi@remirepo.net>2017-11-07 10:40:35 +0100
commit2482f99717b46629d0e5068a2080a87fe11eb87e (patch)
treebd081f8ff9546f4fb58f7412ce5aec402a51d6b9 /composer.json
import from Fedora
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..cc8ae63
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,56 @@
+{
+ "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"
+ }
+ }
+}