Componette

Componette

mrtnzlml-archive

mrtnzlml-archive / workflow

Workflow manager for PHP

download-cloud-line composer require adeira/workflow

Configuration:

workflow:
	order:
		activities:
			new: 2 #START
			todo: 4
			must_order: 8
			waiting: 16
			shippable: 32
			shipped: 64 #END
			returned: 128  #END
		transitions:
			alwaysInvoke: @statusChanger
			matrix: [todo, must_order, waiting, shippable] #TODO: invoke
			- from: new
			  to: [todo, must_order, waiting, shippable, shipped, returned]
			  #invoke: ...
			- from: todo
			  to: [shipped, returned]
			- from: must_order
			  to: [shipped, returned]
			- from: waiting
			  to: [shipped, returned]
			- from: shippable
			  to: [shipped, returned]

Output transitions:

new         =>  todo
new         =>  must_order
new         =>  waiting
new         =>  shippable
new         =>  shipped
new         =>  returned
todo        =>  shipped
todo        =>  returned
must_order  =>  shipped
must_order  =>  returned
waiting     =>  shipped
waiting     =>  returned
shippable   =>  shipped
shippable   =>  returned
todo        =>  must_order
todo        =>  waiting
todo        =>  shippable
must_order  =>  todo
must_order  =>  waiting
must_order  =>  shippable
waiting     =>  todo
waiting     =>  must_order
waiting     =>  shippable
shippable   =>  todo
shippable   =>  must_order
shippable   =>  waiting

No release at this moment. Try to create first one.

bar-chart-fill

Statistics

download-cloud-fill
N/A
star-fill
5
bug-fill
0
flashlight-fill
7.2y
price-tag-2-line

Badges

guide-fill

Dependencies

php (^7.0)
nette/di (^3.0@dev)
Componette Componette felix@nette.org