Download the PHP package yokai/messenger-bundle without Composer

On this page you can find all versions of the php package yokai/messenger-bundle. 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 messenger-bundle

YokaiMessengerBundle

:warning: This package is abandoned and no longer maintained. The author suggests using the symfony/notifier package instead.

Latest Stable Version Latest Unstable Version Total Downloads License

Build Status Scrutinizer Code Quality Code Coverage SensioLabsInsight

Simplify message sending processes in a Symfony2 project.

Imagine that your application sends emails, triggers UI notifications, sends SMS. You are using several libraries to do it. And if you did not factorize your code, you will have bunch of copy paste in every place you are sending something.

Worst, if you was expecting to send an email some day, you may send also an SMS tomorrow. If that happen, you will need to rewrite your code...

This bundle is trying to help with all these problems, providing a simple way to configure a distribute these messages.

Principles

Message

A message represent the fact that your application is sending something.

Creating a message is as easy as creating a service of class Yokai\MessengerBundle\Message with at least 1 yokai_messenger.message tag, for each tag you specify the channel on which the message should be distributed.

You can also register it using this bundle configuration.

Recipient

A recipient represent the information about the target of your message.

Every channel is free to support only certain types of recipient (mostly by checking interfaces).

Channel

A channel represent a way to distribute messages.

This bundle come with some built-in channels:

Creating a channel is as easy as creating a service that implements Yokai\MessengerBundle\Channel\ChannelInterface with the yokai_messenger.channel tag.

A channel will be asked to handle a delivery whenever a message is about to be sent.

Delivery

A delivery (Yokai\MessengerBundle\Delivery) represent the message about to be sent to a recipient for a channel. It is mainly matter of storing all the data in the same place.

Creating a delivery is an internal process, that must be done by the sender.

Sender

The sender is your entry point for sending messages.

It centralize the configuration of which messages to send over which channels.

Installation

Add the bundle as dependency with Composer

Enable the bundle in the kernel

Configuration

Please read the dedicated documentation.

Usage

Please read the dedicated documentation.

MIT License

License can be found here.

Authors

The bundle was originally created by Yann Eugoné.

See the list of contributors.


All versions of messenger-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6
symfony/framework-bundle Version ~2.8|~3.0|~4.0
symfony/translation Version ~2.8|~3.0|~4.0
twig/twig Version ~1.34|~2.0
yokai/dependency-injection Version ~1.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 yokai/messenger-bundle contains the following files

Loading the files please wait ....