Download the PHP package graham-campbell/queuing without Composer

On this page you can find all versions of the php package graham-campbell/queuing. 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 queuing

Laravel Queuing

Laravel Queuing was created by, and is maintained by Graham Campbell, and provides queuing performance increases for Laravel 4.2. It works by doing the actual job queuing (including the execution of sync jobs) after the response has been sent to the client (on shutdown). Feel free to check out the contribution guidelines.

WARNING

This package is no longer maintained.

Laravel Queuing

Build Status Coverage Status Quality Score Latest Version

Installation

PHP 5.4+ or HHVM 3.3+, and Composer are required.

To get the latest version of Laravel Queuing, simply add the following line to the require block of your composer.json file:

There are some additional dependencies you will need to install for some of the features:

You'll then need to run composer install or composer update to download it and have the autoloader updated.

Once Laravel Queuing is installed, you need to register the service provider. Open up app/config/app.php and add the following to the providers key.

You MUST also remove the laravel queuing service provider!

Open up app/config/app.php and remove 'Illuminate\Queue\QueueServiceProvider'.

Failure to do so will result in an infinite loop.

Configuration

Laravel Queuing requires no configuration behond what Laravel's queuing would otherwise require, but provides a quickstart command for iron queuing where after configuring, you can simply run php artisan queue:iron with no arguments and it will just work.

Usage

Queues\XXXQueue

All queue classes override Laravel's queue classes. When ever you call methods such as push, behind the scenes with package will simply queue them up in php's memory for real pushing whenever the process method on these classes is called. By default, this package will call this on shutdown through the queue manager, but you may manually call this earlier if you so which. After calling the function, the jobs will be removed from the internal queue so later calls to this function will not push same jobs twice.

QueueManager

This class extends Laravel's queue manager and will override it. It has one extra method processAll. This will call the process method on all active queue connections. The functionality of the process method on each queue is described above.

QueuingServiceProvider

This class contains no public methods of interest. This class should be added to the providers array in app/config/app.php. This class will setup ioc bindings and register queue processing. Illuminate\Queue\QueueServiceProvider must be removed from the service provider list before you add this class.

Further Information

There are other classes in this package that are not documented here. This is because they are not intended for public use and are used internally by this package.

Feel free to check out the API Documentation for Laravel Queuing.

License

Laravel Queuing is licensed under The MIT License (MIT).


All versions of queuing with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.7
illuminate/console Version ~4.2
illuminate/queue Version ~4.2
illuminate/support Version ~4.2
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 graham-campbell/queuing contains the following files

Loading the files please wait ....