2017 © Pedro PelĆ”ez
 

library qutee-service-provider

QuTee Service Provider for Silex microframework

image

anorgan/qutee-service-provider

QuTee Service Provider for Silex microframework

  • Monday, May 6, 2013
  • by anorgan
  • Repository
  • 1 Watchers
  • 0 Stars
  • 26 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Qutee Service Provider for Silex

Build Status, (*1)

Silex Service Provider for queue manager and task processor - QuTee., (*2)

Instalation

Qutee Service Provider is easily installed via Composer by requiring "anorgan/qutee-service-provider": "*"., (*3)

{
    "require": {
        "anorgan/qutee-service-provider": "*"
    },
    "minimum-stability": "dev"
}

Usage

Register the Qutee Service Provider in Silex application, provide the configuration via qutee.config key., (*4)

<?php

// Register and configure the service provider

$app->register(new \Qutee\Silex\QuteeServiceProvider(), array(
    'qutee.config' => array(
        'persistor' => 'Redis',
        'options'   => array(
            'host'  => '127.0.0.1',
            'port'  => 6379
        )
    )
));

// Create tasks
$app['qutee.create_task'](
    'Acme/DeleteFolder',
    array('path' => '/usr'),
    \Qutee\Task::PRIORITY_HIGH
);

// Process tasks
$app['qutee.worker']
    ->setInterval(30)
    ->run();

The Versions

06/05 2013

dev-master

9999999-dev https://github.com/anorgan/QuteeServiceProvider

QuTee Service Provider for Silex microframework

  Sources   Download

LGPL-2.1+

The Requires

 

The Development Requires

by Marin Crnković

silex task job worker background qutee

06/05 2013

v1.0.1

1.0.1.0 https://github.com/anorgan/QuteeServiceProvider

QuTee Service Provider for Silex microframework

  Sources   Download

LGPL-2.1+

The Requires

 

The Development Requires

by Marin Crnković

silex task job worker background qutee

06/05 2013

v1.0.0

1.0.0.0 https://github.com/anorgan/QuteeServiceProvider

QuTee Service Provider for Silex microframework

  Sources   Download

LGPL-2.1+

The Requires

 

The Development Requires

by Marin Crnković

silex task job worker background qutee