Download the PHP package ikarus/sps without Composer

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

Ikarus SPS

Ikarus SPS is an attempt to run PHP on a device as independent SPS.

Installation

This reporitory is a package that can be intalled using composer: `

How Ikarus SPS works

The Ikarus SPS engine distinguish between two kinds of run modes:

  1. Cycle based engine
    This engine type defines a fixed frequency, for example 2Hz, which means, that the engine updates twice per second.
  2. Event based engine
    The event based engine waits until an event gets triggered from one of its plugins.

So it depends of your requirements, which kind of SPS engine you prefer.

General workflow

  1. There is usually one instance of a SPS Engine running on a device.
  2. Eventbased: This instance needs two kinds of plugins: listeners and triggers.
    or cyclebased: The instance needs only cycle plugins.
  3. The listener waits until something happens in the SPS to perform an action. (SPS to device)
    Example: A timer event was triggered and the listener now instructs a motor to close the door.
  4. A trigger wait until something happens on the device and informs the SPS. (Device to SPS)
    Example: An input sensor notifies that the door is closed or a timer triggers that time is up.
  5. Run the engine, now the plugins get active and the SPS runs.

Multiprocessing

PHP has an extension that allows forking a process.
This feature is used to multitask the SPS Engine.
All trigger plugins are dispatched to a separate process. Now they can wait for an event of the device, while the SPS Engine and its listeners continue working.

SPS Trigger Plugins

As described above, trigger plugins run in a separate process to avoid that the SPS Engine gets blocked because of a listener (Example: listening on a socket blocks the thread until something is available to read from the socket.)

But this has one disadvantage:

This means:

To solve this problem, the Ikarus SPS package has dispatchable events that can be transmitted from and to SPS triggers.


All versions of sps with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
tasoft/event-manager Version ^1.0
tasoft/process Version ^1.0
tasoft/value-injector Version ^1.0
ext-sockets Version *
ext-pcntl Version *
ext-posix Version *
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 ikarus/sps contains the following files

Loading the files please wait ....