Download the PHP package jorbascrumps/laravel-queue-it without Composer

On this page you can find all versions of the php package jorbascrumps/laravel-queue-it. 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 laravel-queue-it

Laravel Queue-it

Tests

Queue-it integration for Laravel.

Installation

Setup

Add your Queue-it credentials to your environment file.

[!TIP] Your secret can be found in the Go Queue-it self-service platform under Account > Settings > Integration.

Usage

Known User Queue

[!CAUTION] You should not apply KnownUserQueue to static or cached pages, or assets.

Known User Queue allows control over queues via the Go Queue-it self-service platform and requires an integration config. See Exporting integration config for details on how you can acquire it. Once you've added an integration config to your project you can apply the KnownUserQueue middleware to any route or route group that you want to be queueable.

You can also reference the class name instead of the alias if you prefer:

Inline Queue

[!CAUTION] You should not apply InlineQueue to static or cached pages, or assets.

Apply the InlineQueue middleware to any route or route group that you want to be queueable. You must specify an event and queue domain. Other [customization options]() are also available.

User queue eligibility

You may not want to send every user through the queue. In these scenarios you can provide a customer resolver to determine queue eligibility within a service provider.

The callback will be resolved via the container so you can inject the authenticated user or any other depedency you may need.

Exporting integration config

Known User Queues require an integration configuration file that contains logic for how and when queues should be managed. There are several options available to add this file to your project.

Publish webhook

This package includes a webhook route that you can register in your account to push your integration configuration file to anytime you make changes. You can configure this setting under Integrations > Overview > Settings > Publish web endpoint.

[!TIP] You can customize the webhook route in your environment file:

Using Artisan

This package includes an Artisan command to fetch and store your integration file anytime you need to. Note that this method requires an API key.

[!IMPORTANT] You can specify your API key in your environment file:

Custom resolver

If you need to implement custom logic to provide your integration configuration you may do so using a custom resolver in a service provider.

The default resolver provided will attempt to find your configuration in your application's storage.

Manual download

Download options can be found in your account under Integrations > Overview > Latest KnownUser configuration. You should save this to your application's storage directory.

Customizing config file location

By default, your integration configuration file is expected to be found in your application's storage as queue-it-config.json. If you need to store it under a different name in storage, you can specify this in your environment file:


All versions of laravel-queue-it with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
queueit/knownuserv3 Version ^3.7
illuminate/support Version ^8|^9|^10|^11
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 jorbascrumps/laravel-queue-it contains the following files

Loading the files please wait ....