├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── composer.json ├── config └── url-shortener.php ├── database └── migrations │ ├── 2021_08_04_101021_create_url_shorteners_table.php │ ├── 2021_08_04_142526_update_url_key_length.php │ └── 2021_08_12_165626_addunique_url_key.php ├── phpunit.xml ├── readme.md ├── src ├── LaravelUrlShortenerServiceProvider.php ├── Models │ └── UrlShortener.php └── routes │ └── web.php └── tests └── TestCase.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | .env 3 | .phpunit.result.cache -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/composer.json -------------------------------------------------------------------------------- /config/url-shortener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/config/url-shortener.php -------------------------------------------------------------------------------- /database/migrations/2021_08_04_101021_create_url_shorteners_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/database/migrations/2021_08_04_101021_create_url_shorteners_table.php -------------------------------------------------------------------------------- /database/migrations/2021_08_04_142526_update_url_key_length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/database/migrations/2021_08_04_142526_update_url_key_length.php -------------------------------------------------------------------------------- /database/migrations/2021_08_12_165626_addunique_url_key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/database/migrations/2021_08_12_165626_addunique_url_key.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/readme.md -------------------------------------------------------------------------------- /src/LaravelUrlShortenerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/src/LaravelUrlShortenerServiceProvider.php -------------------------------------------------------------------------------- /src/Models/UrlShortener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/src/Models/UrlShortener.php -------------------------------------------------------------------------------- /src/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/src/routes/web.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magarrent/laravel-url-shortener/HEAD/tests/TestCase.php --------------------------------------------------------------------------------