forked from phpinnacle/ridge
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
# PHPinnacle Ridge | ||
# AMQP for AMPHP V3 | ||
|
||
[![Latest Version on Packagist][ico-version]][link-packagist] | ||
[![Software License][ico-license]](LICENSE.md) | ||
![Continuous Integration](https://github.com/phpinnacle/ridge/workflows/Continuous%20Integration/badge.svg) | ||
[![Shepherd](https://shepherd.dev/github/phpinnacle/ridge/coverage.svg)](https://shepherd.dev/github/phpinnacle/ridge) | ||
[![Total Downloads][ico-downloads]][link-downloads] | ||
|
||
This library is a pure asynchronous PHP implementation of the AMQP 0-9-1 protocol. | ||
|
||
Code is mostly based on [bunnyphp](https://github.com/jakubkulhan/bunny), but use [amphp](https://amphp.org) for async operations. | ||
Code is mostly based on [bunnyphp](https://github.com/jakubkulhan/bunny) and [PHPinnacle Ridge](https://github.com/phpinnacle/ridge), but use [amphp](https://amphp.org) for async operations. | ||
|
||
## Install | ||
|
||
Via Composer | ||
|
||
```bash | ||
$ composer require phpinnacle/ridge | ||
$ composer require pnixx/amp-rabbitmq | ||
``` | ||
|
||
## Basic Usage | ||
|
@@ -75,22 +73,18 @@ If you discover any security related issues, please email [email protected] ins | |
|
||
## Credits | ||
|
||
- [PHPinnacle][link-author] | ||
- [PNixx][link-author] | ||
- [All Contributors][link-contributors] | ||
|
||
## License | ||
|
||
The MIT License (MIT). Please see [License File](LICENSE.md) for more information. | ||
|
||
[ico-version]: https://img.shields.io/packagist/v/phpinnacle/ridge.svg?style=flat-square | ||
[ico-version]: https://img.shields.io/packagist/v/pnixx/amp-rabbitmq.svg?style=flat-square | ||
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square | ||
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/phpinnacle/ridge.svg?style=flat-square | ||
[ico-code-quality]: https://img.shields.io/scrutinizer/g/phpinnacle/ridge.svg?style=flat-square | ||
[ico-downloads]: https://img.shields.io/packagist/dt/phpinnacle/ridge.svg?style=flat-square | ||
|
||
[link-packagist]: https://packagist.org/packages/phpinnacle/ridge | ||
[link-scrutinizer]: https://scrutinizer-ci.com/g/phpinnacle/ridge/code-structure | ||
[link-code-quality]: https://scrutinizer-ci.com/g/phpinnacle/ridge | ||
[link-downloads]: https://packagist.org/packages/phpinnacle/ridge | ||
[link-author]: https://github.com/phpinnacle | ||
[ico-downloads]: https://img.shields.io/packagist/dt/pnixx/amp-rabbitmq.svg?style=flat-square | ||
|
||
[link-packagist]: https://packagist.org/packages/pnixx/amp-rabbitmq | ||
[link-downloads]: https://packagist.org/packages/pnixx/amp-rabbitmq | ||
[link-author]: https://github.com/PNixx | ||
[link-contributors]: ../../contributors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
{ | ||
"name": "phpinnacle/ridge", | ||
"name": "pnixx/amp-rabbitmq", | ||
"type": "library", | ||
"description": "PHPinnacle async AMQP client", | ||
"description": "Async AMQP client", | ||
"keywords": [ | ||
"phpinnacle", | ||
"async", | ||
"amqp" | ||
"amqp", | ||
"amphp", | ||
"amphpv3" | ||
], | ||
"homepage": "https://github.com/phpinnacle/ridge", | ||
"homepage": "https://github.com/PNixx/amp-rabbitmq", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "PHPinnacle", | ||
"email": "[email protected]", | ||
"homepage": "https://phpinnacle.com", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Sergey Odintsov", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/PNixx", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
|