├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpstan.neon.dist ├── pint.json └── src ├── Contracts ├── FlowCondition.php ├── FlowStep.php └── Workflow.php ├── Flow.php └── Providers └── PackageServiceProvider.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/pint.json -------------------------------------------------------------------------------- /src/Contracts/FlowCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/src/Contracts/FlowCondition.php -------------------------------------------------------------------------------- /src/Contracts/FlowStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/src/Contracts/FlowStep.php -------------------------------------------------------------------------------- /src/Contracts/Workflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/src/Contracts/Workflow.php -------------------------------------------------------------------------------- /src/Flow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/src/Flow.php -------------------------------------------------------------------------------- /src/Providers/PackageServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustSteveKing/laravel-flows/HEAD/src/Providers/PackageServiceProvider.php --------------------------------------------------------------------------------