dev-master
9999999-dev https://github.com/limen/php-graflowA simple node flow controller
MIT
The Requires
- php >=5.4
- predis/predis 1.1.*
The Development Requires
by LI Mengxiang
workflow state-machine
Wallogit.com
2017 © Pedro Peláez
A simple node flow controller
A simple flow controller with features, (*2)
Recommend to install via composer., (*3)
composer require "limen/php-graflow"
see src/Examples and tests/, (*4)
When node A has way to node B, A is B's in node and B is A's out node., (*5)
The first key must be the head node., (*6)
[
'blank' => ['editing', 'canceled'],
'editing' => ['draft', 'canceled'],
'draft' => ['editing', 'published', 'canceled'],
'published' => ['draft', 'printed', 'canceled'],
'printed' => [],
'canceled' => [],
]
The equivalent graph, (*7)
, (*8)
The arrow shows the way direction., (*9)
A simple node flow controller
MIT
workflow state-machine