mossengine / fivecode
PHP Class to enable fifth generation instructional code driven by programmatic instructions to execute under a controlled logic in the backend.
2.2.4
2021-07-05 07:05 UTC
Requires
- php: >=7.0
- ext-json: *
- illuminate/support: ^5.2.32
- mossengine/helper: ^2.0
- mossengine/helpersarray: ^1.0
- mossengine/helpersstatement: ^1.0
- ramsey/uuid: ^3.4.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ~2
- phpunit/phpunit: ~4.0 || ~5.0
README
A PHP library for evaluating a 5th Generation programming structure called FiveCode.
Installation
$ composer require mossengine/fivecode
{ "require": { "mossengine/fivecode": "~2.0.0" } }
Usage
new FiveCode()
// Require the autoloader, normal composer stuff require 'vendor/autoload.php'; // Instantiate a FiveCode class $fiveCode = new Mossengine\FiveCode\FiveCode(); // Evaluate an array of FiveCode through the evaluate class method. $fiveCode->evaluate([ ['' => []], ['' => []], ['' => []], ['' => []] ]);
FiveCode::make()
// Require the autoloader, normal composer stuff require 'vendor/autoload.php'; // Use the static make method and immediately evaluate an array of instructions Mossengine\FiveCode\FiveCode::make() ->evaluate([ ['' => []], ['' => []], ['' => []], ['' => []] ]);
Documentation
Read the docs for more details on FiveCode language structure or to create your own parsers/functions to provide more capabilities