Download the PHP package prohalexey/the-choice without Composer

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

Business Rule Engine - TheChoice

Build Status GitHub license

"Business Rule Engine" on PHP

This library allows you to simplify the writing of rules for business processes, such as:

This can be useful for you if you change certain conditions in your code over and over againg. It allows you to move these conditions to configuration sources. You can even create a web interface that can edit configurations. You can write rules in JSON or YAML format and store them into files or in the database. Configuration can be serialized and cached.

Installation

Examples

JSON configuration

The same thing but in the YAML configuration

Usage in PHP

Core functionality

Node types

Each node has a “node” property that describes the type of node. And also each node has a “description” property which can be used to store description for UI.

Root

This is a rules' tree root. It has a state and it stores a result of execution.

Node properties

storage - Simple container for variables.

rules - This property contain the first node that will be processed. Actually even if you omit this node it will be created automatically.

Example

Value

This is a simple node that just return some value.

Node properties

value - Simple value

Example

The value can be an array, string, numeric.

Context

This is node associated with some callable object and return some values as result of execution that callable objects. This node can change the global state which stored in the "Root" node.

Node properties

break - Is a special property that can stop rules processor after execution this node. For now the only allowed value is "immediately" which stop rules execution and return the context result as final result.

contextName - The name of context to be used for calculations.

modifiers - Array of modifiers.

operator - An operator to be used for calculations or comparisons.

params - An array of parameters to be set in context.

priority - Priority node. If this node will be used in the collection, then the elements in the collection will be sorted according to this value.

value - Default value for the $context variable;

Example

You can set the parameters to "callable" if this "callable" is object. Parameters will be set via setters or public properties before executing the rules

You can use modifiers for modify return value from context. Use predefined variable $context For more information about calculations please read this https://github.com/chriskonnertz/string-calc

The result will be stored in the storage or the result will be returned to the "root" node.

You can use Built-in Operators to test returning value of CONTEXT node against some value.

Operators must return boolean values

This Built-in operators can be used or you can register new custom operators and add them to the container.

Collection

Collection is a node that contains other nodes.

Node properties

type - Available types of collection are AND and OR.

nodes - An array of nodes.

priority - Priority node. If this node will be used in the collection, then the elements in the collection will be sorted according to this value.

PRIORITY property is used if this node is in the another collection (e.g collection of collections)

Example

This node is expecting boolean values from nodes and return a value depending on the type of collection.

Condition

A condition node used to test some conditions.

if - Is expecting boolean value from inner nodes.

then - Any other nodes include another IF node. Executing if result is TRUE

else - Any other nodes include another IF node. Executing if result is FALSE

Any Questions ?

See the tests and especially the container for more details.


All versions of the-choice with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
chriskonnertz/string-calc Version ^1.0
symfony/yaml Version ^4.3
ext-json Version *
ext-mbstring 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 prohalexey/the-choice contains the following files

Loading the files please wait ....