├── .github └── workflows │ └── run-tests.yml ├── .php-cs-fixer.php ├── LICENSE.md ├── README.md ├── composer.json ├── config └── config.php └── src ├── Console └── Commands │ ├── Command.php │ ├── FlushSequenceValues.php │ └── PopulateSequenceValues.php ├── Exceptions └── SequenceValueOutOfBoundsException.php ├── SequencingStrategy.php ├── ServiceProvider.php └── Traits └── Sequenceable.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/config/config.php -------------------------------------------------------------------------------- /src/Console/Commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/src/Console/Commands/Command.php -------------------------------------------------------------------------------- /src/Console/Commands/FlushSequenceValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/src/Console/Commands/FlushSequenceValues.php -------------------------------------------------------------------------------- /src/Console/Commands/PopulateSequenceValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/src/Console/Commands/PopulateSequenceValues.php -------------------------------------------------------------------------------- /src/Exceptions/SequenceValueOutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/src/Exceptions/SequenceValueOutOfBoundsException.php -------------------------------------------------------------------------------- /src/SequencingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/src/SequencingStrategy.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/Sequenceable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/laravel-eloquent-sequencer/HEAD/src/Traits/Sequenceable.php --------------------------------------------------------------------------------