Download the PHP package katsana/minions-server without Composer

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

Minions Component Server using ReactPHP

Build Status Latest Stable Version Total Downloads Latest Unstable Version License Coverage Status

Installation

Minions can be installed via composer:

Please ensure that you already install Minions and go through the installation and setup documentation.

Usages

Minion Server will run the RPC Server using ReactPHP running from Artisan command.

You can start the RPC server by issuing the artisan command:

php artisan minions:serve

Configurations

You can export the default minions-server.php to your project directory via the following command:

Using a different port

The default port of the RPC server is 8085. You may set a different port by updating the environment file (or config/minions.php).

Restricting the listening host

By default, the RPC server will listen on 127.0.0.1 and will only allow incoming connections from local networks. If you want to expose this, you set a different host updating the environment file (or config/minions.php).

Keeping the socket server running with supervisord

The minions:serve daemon needs to always be running in order to accept connections. This is a prime use case for supervisor, a task runner on Linux.

First, make sure supervisor is installed.

# On Debian / Ubuntu
apt install supervisor

# On Red Hat / CentOS
yum install supervisor
systemctl enable supervisor

Once installed, add a new process that supervisor needs to keep running. You place your configurations in the /etc/supervisor/conf.d (Debian/Ubuntu) or /etc/supervisord.d (Red Hat/CentOS) directory.

Within that directory, create a new file called minions.conf.

Once created, instruct supervisor to reload it's configuration files (without impacting the already running supervisor jobs).

supervisorctl update
supervisorctl start minion

Your RPC server should now be running (you can verify this with supervisorctl status). If it were to crash, supervisor will automatically restart it.

Please note that, by default, supervisor will force a maximum number of open files onto all the processes that it manages. This is configured by the minfds parameter in supervisord.conf.

If you want to increase the maximum number of open files, you may do so in /etc/supervisor/supervisord.conf (Debian/Ubuntu) or /etc/supervisord.conf (Red Hat/CentOS):

[supervisord]
minfds=10240; (min. avail startup file descriptors;default 1024)

After changing this setting, you'll need to restart the supervisor process (which in turn will restart all your processes that it manages).


All versions of minions-server with dependencies

PHP Build Version
Package Version
Requires illuminate/console Version ^6.0 || ^7.0 || ^8.0
katsana/minions Version ^1.6 || ^2.1
laravie/stream Version ^1.3
league/climate Version ^3.5
react/event-loop Version ^1.1
react/http Version ^0.8.4
react/promise Version ^2.5
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 katsana/minions-server contains the following files

Loading the files please wait ....