├── .dockerignore ├── .editorconfig ├── .github └── workflows │ └── test.yaml ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── auth.dist.json ├── catalog-info.yaml ├── composer.json ├── config ├── laravel-statable.php └── state-machine.php ├── database └── migrations │ └── create_state_history_table.php.stub └── src ├── Models └── StateHistory.php ├── ServiceProvider.php ├── Services └── StateHistoryManager.php └── Statable.php /.dockerignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/README.md -------------------------------------------------------------------------------- /auth.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/auth.dist.json -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravel-statable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/config/laravel-statable.php -------------------------------------------------------------------------------- /config/state-machine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/config/state-machine.php -------------------------------------------------------------------------------- /database/migrations/create_state_history_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/database/migrations/create_state_history_table.php.stub -------------------------------------------------------------------------------- /src/Models/StateHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/src/Models/StateHistory.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/Services/StateHistoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/src/Services/StateHistoryManager.php -------------------------------------------------------------------------------- /src/Statable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iben12/laravel-statable/HEAD/src/Statable.php --------------------------------------------------------------------------------