├── .php_cs.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── redirection.php ├── database └── migrations │ └── create_redirections_table.php.stub └── src ├── Commands └── RedirectionListCommand.php ├── Contracts ├── RedirectionModelContract.php └── Redirector.php ├── Drivers ├── DatabaseRedirector.php └── FileRedirector.php ├── Exceptions └── RedirectionException.php ├── Models └── Redirection.php ├── Redirect.php ├── RedirectRequests.php └── RedirectionServiceProvider.php /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/composer.json -------------------------------------------------------------------------------- /config/redirection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/config/redirection.php -------------------------------------------------------------------------------- /database/migrations/create_redirections_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/database/migrations/create_redirections_table.php.stub -------------------------------------------------------------------------------- /src/Commands/RedirectionListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/Commands/RedirectionListCommand.php -------------------------------------------------------------------------------- /src/Contracts/RedirectionModelContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/Contracts/RedirectionModelContract.php -------------------------------------------------------------------------------- /src/Contracts/Redirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/Contracts/Redirector.php -------------------------------------------------------------------------------- /src/Drivers/DatabaseRedirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/Drivers/DatabaseRedirector.php -------------------------------------------------------------------------------- /src/Drivers/FileRedirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/Drivers/FileRedirector.php -------------------------------------------------------------------------------- /src/Exceptions/RedirectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/Exceptions/RedirectionException.php -------------------------------------------------------------------------------- /src/Models/Redirection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/Models/Redirection.php -------------------------------------------------------------------------------- /src/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/Redirect.php -------------------------------------------------------------------------------- /src/RedirectRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/RedirectRequests.php -------------------------------------------------------------------------------- /src/RedirectionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiroDiaz/laravel-redirection/HEAD/src/RedirectionServiceProvider.php --------------------------------------------------------------------------------