Download the PHP package assetplan/dispatcher without Composer

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

Assetplan Dispatcher

Assetplan Dispatcher is a lightweight PHP package that allows you to dispatch jobs between multiple applications using HTTP requests. This can be useful in distributed systems where jobs need to be executed on remote machines.

Installation

You can install the package via composer:

Usage

Setting up the backend

Before you can start dispatching jobs, you need to set up a backend application that will receive the dispatched jobs. This can be any PHP application that can handle HTTP requests. You'll need to set the following environment variables to configure the backend:

The DISPATCHER_BACKEND_URL variable should point to the URL of the backend application. The DISPATCHER_BACKEND_SECRET variable is a shared secret that is used to sign the dispatched jobs. Make sure to keep this secret secure.

Generating a secret key

The dispatcher:generate-secret command allows you to generate a secret key that is used to sign the dispatched jobs. You can use this command to generate a new secret key or replace an existing one.

To generate a new secret key, run the following command:

By default, the command generates a 64-character secret key and saves it in the .env file of your application. If the .env file does not exist, the command will display an error message.

You can use the --length option to specify the length of the secret key. For example, to generate a 128-character secret key, run the following command:

You can use the --show option to display the generated secret key in the console. For example, to generate a new secret key and display it in the console, run the following command:

You can use the --no-replace option to generate a new secret key without replacing an existing one. For example, to generate a new secret key without replacing an existing one, run the following command:

If the .env file already contains a DISPATCHER_BACKEND_SECRET variable, the command will replace its value with the newly generated secret key. If the .env file does not contain a DISPATCHER_BACKEND_SECRET variable, the command will add the variable and its value to the file.

Note: If you are running the command in a production environment, the command will display a warning message and exit without generating a new secret key. This is to prevent accidental changes to production settings.

Configuration

The package comes with a configuration file that allows you to customize its behavior. You can publish the configuration file by running the following command:

Once you have published the configuration file, you can customize the following options:

Aliases

The aliases configuration option allows you to register custom aliases for job classes. This can be useful to avoid typing the fully qualified class name of a job every time you dispatch it.

Here's an example of how to register an alias in the dispatcher.php config file:

You can then use the alias when dispatching the job:

Note: Registering aliases is entirely optional and it only needs to be done in the backend server.

Dispatching a job

To dispatch a job from your application, use the dispatch method of the Dispatcher class. The method takes two parameters:

Here's an example:

The dispatch method will return the result of the dispatched job. You can use this result to track the status of the job or to perform further processing.

Dispatching a batch of jobs

To dispatch a batch of jobs, use the batch method of the Dispatcher class. The method takes three parameters:

Here's an example:

Note: When dispatching with shouldBatch=false the batch id will be generated as the local batch UUID.

Some final considerations

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of dispatcher with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/support Version ^10.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 assetplan/dispatcher contains the following files

Loading the files please wait ....