This package is for implementing the Eloquent State Machine of various Laravel projects.
Run the following command to pull in the latest version:
composer require jobmetric/state-machine
Add the service provider to the providers array in the config/app.php config file as follows:
'providers' => [
...
JobMetric\StateMachine\StateMachineServiceProvider::class,
]