From c384473ab3e3c0e5cddcf7040658bd77496a16e3 Mon Sep 17 00:00:00 2001 From: oreillysean Date: Sun, 13 Feb 2022 18:25:34 +0000 Subject: [PATCH] Replace rabbitmq-management-api with a packagist source Also fixed small typo that would prevents github actions from working if that is ever needed --- pkg/stomp/.github/workflows/ci.yml | 2 +- pkg/stomp/composer.json | 8 +------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/pkg/stomp/.github/workflows/ci.yml b/pkg/stomp/.github/workflows/ci.yml index fd2ae7f2d..a168dca05 100644 --- a/pkg/stomp/.github/workflows/ci.yml +++ b/pkg/stomp/.github/workflows/ci.yml @@ -26,4 +26,4 @@ jobs: with: composer-options: "--prefer-source" - - run: vendor/bin/phpunit --exlude-group=functional + - run: vendor/bin/phpunit --exclude-group=functional diff --git a/pkg/stomp/composer.json b/pkg/stomp/composer.json index 2e4963400..383ce6fe9 100644 --- a/pkg/stomp/composer.json +++ b/pkg/stomp/composer.json @@ -5,12 +5,6 @@ "keywords": ["messaging", "queue", "stomp"], "homepage": "https://enqueue.forma-pro.com/", "license": "MIT", - "repositories": [ - { - "type": "git", - "url": "https://github.com/andrewmy/php-rabbitmq-management-api.git" - } - ], "require": { "php": "^7.3|^8.0", "enqueue/dsn": "^0.10", @@ -18,7 +12,7 @@ "queue-interop/queue-interop": "^0.8", "php-http/guzzle7-adapter": "^0.1.1", "php-http/client-common": "^2.2.1", - "richardfullmer/rabbitmq-management-api": "^2.1.1", + "andrewmy/rabbitmq-management-api": "^2.1.2", "guzzlehttp/guzzle": "^7.0.1", "php-http/discovery": "^1.13" },