├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── docs ├── LaravelNomadic-Stub.PNG ├── LaravelNomadic-Trait.PNG ├── LaravelNomadic-preConstructHook.png ├── LaravelNomadic-upDownHooks.png ├── NomadLife.png ├── NomadicHooks.md ├── NomadicSchema.md └── NomadicTraits.md └── src ├── DatabaseNomadicRepository.php ├── Hooks ├── CustomizeStub.php ├── NomadicBaseHookInterface.php ├── NomadicCreateHookInterface.php ├── NomadicHookInterface.php ├── NomadicMigrationHookInterface.php ├── PrintRan.php └── PrintRunning.php ├── NomadicMigration.php ├── NomadicMigrationCreator.php ├── NomadicMigrator.php ├── NomadicRepositoryInterface.php ├── NomadicServiceProvider.php ├── Traits └── Printable.php ├── nomadic.php └── stubs └── blank.stub /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/LaravelNomadic-Stub.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/docs/LaravelNomadic-Stub.PNG -------------------------------------------------------------------------------- /docs/LaravelNomadic-Trait.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/docs/LaravelNomadic-Trait.PNG -------------------------------------------------------------------------------- /docs/LaravelNomadic-preConstructHook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/docs/LaravelNomadic-preConstructHook.png -------------------------------------------------------------------------------- /docs/LaravelNomadic-upDownHooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/docs/LaravelNomadic-upDownHooks.png -------------------------------------------------------------------------------- /docs/NomadLife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/docs/NomadLife.png -------------------------------------------------------------------------------- /docs/NomadicHooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/docs/NomadicHooks.md -------------------------------------------------------------------------------- /docs/NomadicSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/docs/NomadicSchema.md -------------------------------------------------------------------------------- /docs/NomadicTraits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/docs/NomadicTraits.md -------------------------------------------------------------------------------- /src/DatabaseNomadicRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/DatabaseNomadicRepository.php -------------------------------------------------------------------------------- /src/Hooks/CustomizeStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/Hooks/CustomizeStub.php -------------------------------------------------------------------------------- /src/Hooks/NomadicBaseHookInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/Hooks/NomadicBaseHookInterface.php -------------------------------------------------------------------------------- /src/Hooks/NomadicCreateHookInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/Hooks/NomadicCreateHookInterface.php -------------------------------------------------------------------------------- /src/Hooks/NomadicHookInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/Hooks/NomadicHookInterface.php -------------------------------------------------------------------------------- /src/Hooks/NomadicMigrationHookInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/Hooks/NomadicMigrationHookInterface.php -------------------------------------------------------------------------------- /src/Hooks/PrintRan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/Hooks/PrintRan.php -------------------------------------------------------------------------------- /src/Hooks/PrintRunning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/Hooks/PrintRunning.php -------------------------------------------------------------------------------- /src/NomadicMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/NomadicMigration.php -------------------------------------------------------------------------------- /src/NomadicMigrationCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/NomadicMigrationCreator.php -------------------------------------------------------------------------------- /src/NomadicMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/NomadicMigrator.php -------------------------------------------------------------------------------- /src/NomadicRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/NomadicRepositoryInterface.php -------------------------------------------------------------------------------- /src/NomadicServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/NomadicServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/Printable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/Traits/Printable.php -------------------------------------------------------------------------------- /src/nomadic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/nomadic.php -------------------------------------------------------------------------------- /src/stubs/blank.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishalbert/laravel-nomadic/HEAD/src/stubs/blank.stub --------------------------------------------------------------------------------