Download the PHP package deadmerc/rabbitmq-auth without Composer

On this page you can find all versions of the php package deadmerc/rabbitmq-auth. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package rabbitmq-auth

rabbitmq-auth-backend-http-php

PHP implementation of HTTP-based authorisation and authentication for RabbitMQ

Installation

The recommended way to install is through Composer. Require the symftony/rabbitmq-auth-backend-http-php package:

Usage

You can check the example folder.

Use as lib

To use as simple library you must create some service to provide a fully configurable authentication and authorization

Authentication

First of all you need to choose/configure your user provider

You need a authentication checker in order to compare the TokenInterface with user.

The authenticator is use UserProvider to find the user and the AuthenticationChecker to know if the token is authenticate.

Now the Token is authenticated

Authorization

After authenticate, we need to authorize the token to access a resource.

First of all you need a Voter to check the token authorization. The DefaultVoter use the same logic than internal rabbitmq authorization. You can configure each user in each vhost with 4 regular expression that must match to grant access.

AccessDecisionManager is use to allow/deny the token access. AccessDecisionManager need an array of VoterInterface to do the check. You need to implement your own voter, in order to choose if the token is granted or not.

AuthorizationChecker is the manager of authorization process

Now you have all services to authenticate and authorize a token to access a resource.

In order to simplify the RabbitMQ auth check you can use the Security class.

Use in Symfony framework

You need to create the Security service and register the controller as service

You can check the Symfony documentation about security

Define the 4 routes.


All versions of rabbitmq-auth with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3
psr/log Version ^1.0
symfony/security-bundle Version ^2.6|^3.0|^4.0|^5.0
symfony/http-foundation Version ^2.1|^3.4|^4.0|^5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package deadmerc/rabbitmq-auth contains the following files

Loading the files please wait ....