2017 © Pedro Peláez
 

library silex

Silex service provider for Bernard

image

bernard/silex

Silex service provider for Bernard

  • Friday, May 9, 2014
  • by henrikbjorn
  • Repository
  • 3 Watchers
  • 14 Stars
  • 5,332 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 4 Forks
  • 4 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Bernard bindings for Silex

Build Status, (*1)

Brings Bernard to Silex., (*2)

Getting Started

Add the requirement to your composer.json file and register it with you Application., (*3)

``` json { "require" : { "bernard/silex" : "~0.4@dev" } }, (*4)


``` php <?php $app = new Silex\Application; $app->register(new Bernard\Silex\BernardServiceProvider, array( 'bernard.options' => array( 'driver' => 'doctrine', // or redis, predis, sqs, iron_mq 'serializer' => 'symfony', // or jms or simple ), ));

After that you have to make a decision about what driver and what kind of Serializer you want to use., (*5)

The following serializers are supported:, (*6)

  • Simple. No dependencies and it is the default.
  • JMS Serializer. Requires a service with id jms_serializer and jms_serializer.builder is present.
  • Symfony Serializer. Requires SerializerServiceProvider is registered before this provider.

The following drivers are supported:, (*7)

  • Doctrine DBAL requires DoctrineServiceProvider where it try and use a bernard connection.
  • Predis requires https://github.com/nrk/PredisServiceProvider and a predis service. If you use the multi service provider, you should overwrite bernard.predis_driver and do a custom service.
  • Redis extension. Requires http://pecl.php.net/package/redis to be installed and a redis service.
  • Amazon SQS requires AWS SDK PHP version 2 or creater and https://github.com/aws/aws-sdk-php-silex.
  • Iron.MQ requires iron-io/iron_mq package and a iron_mq service.

Registering with the ServiceResolver

The ServiceResolver enabled supports service ids. This means they are lazy loaded when they are needed instead of when they are registering., (*8)

Register bernard.services with an array of MessageName => ServiceId like so:, (*9)

``` php <?php, (*10)

$app['bernard.receivers'] = array( 'ImportUsers' => 'users_worker', ); ```, (*11)

Console

If there is a service named console the consume command will be automatically registred. For advanced usecases see the official documentation on Bernard., (*12)

The Versions

09/05 2014

dev-master

9999999-dev

Silex service provider for Bernard

  Sources   Download

MIT

The Requires

 

The Development Requires

04/02 2014

0.5.0

0.5.0.0

Silex service provider for Bernard

  Sources   Download

MIT

The Requires

 

The Development Requires