├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── redirects.php ├── database └── migrations │ └── create_redirects_table.php.stub └── src ├── Contracts └── RedirectModelContract.php ├── Exceptions └── RedirectException.php ├── Middleware └── RedirectRequests.php ├── Models └── Redirect.php └── ServiceProvider.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/composer.json -------------------------------------------------------------------------------- /config/redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/config/redirects.php -------------------------------------------------------------------------------- /database/migrations/create_redirects_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/database/migrations/create_redirects_table.php.stub -------------------------------------------------------------------------------- /src/Contracts/RedirectModelContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/src/Contracts/RedirectModelContract.php -------------------------------------------------------------------------------- /src/Exceptions/RedirectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/src/Exceptions/RedirectException.php -------------------------------------------------------------------------------- /src/Middleware/RedirectRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/src/Middleware/RedirectRequests.php -------------------------------------------------------------------------------- /src/Models/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/src/Models/Redirect.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurony/laravel-redirects/HEAD/src/ServiceProvider.php --------------------------------------------------------------------------------