summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2026-03-17 07:15:51 +0100
committerRemi Collet <remi@php.net>2026-03-17 07:15:51 +0100
commit67171dd85e37ec60cfe304b0559274dce35ed034 (patch)
tree5c7777d37e0c6ac679daa997c3fb5b0863da1636 /composer.json
parent5e53625d647039da62d62a562447662c936a416d (diff)
drop pear/pecl dependencyHEADmaster
sources from github
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json49
1 files changed, 49 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..b8a946d
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,49 @@
+{
+ "name": "php-amqp/php-amqp",
+ "type": "php-ext",
+ "description": "PHP AMQP Binding Library",
+ "keywords": [
+ "rabbitmq",
+ "amqp",
+ "message",
+ "queue"
+ ],
+ "homepage": "https://github.com/php-amqp/php-amqp",
+ "license": "PHP-3.01",
+ "authors": [
+ {
+ "name": "Lars Strojny",
+ "email": "lstrojny@php.net",
+ "role": "lead"
+ }
+ ],
+ "require": {
+ "php": ">=7.4"
+ },
+ "require-dev": {
+ "ext-json": "*",
+ "ext-dom": "*",
+ "ext-simplexml": "*",
+ "symplify/easy-coding-standard": "*",
+ "slevomat/coding-standard": "^8.13"
+ },
+ "config": {
+ "allow-plugins": {
+ "dealerdirect/phpcodesniffer-composer-installer": false
+ }
+ },
+ "php-ext": {
+ "extension-name": "amqp",
+ "configure-options": [
+ {
+ "name": "with-amqp",
+ "description": "Include amqp support"
+ },
+ {
+ "name": "with-librabbitmq-dir",
+ "description": "Set the path to librabbitmq install prefix.",
+ "needs-value": true
+ }
+ ]
+ }
+}