mlopez / url-shortener
v1.0.0
2023-03-25 05:05 UTC
Requires
- php: >7.2
- illuminate/support: ^10.0
Requires (Dev)
- phpunit/phpunit: 10.0.0
This package is auto-updated.
Last update: 2024-11-25 08:27:08 UTC
README
This package implements a URL shortener in your Laravel project, using a migration and two access routes. It also comes with a configuration file to adjust what you consider necessary.
Installation
Use composer to install the package.
composer require mlopez/url-shortener
Optionally, you can publish the configuration file and the migration.
php artisan vendor:publish --tag=url-shortener-migrations
php artisan vendor:publish --tag=url-shortener-config
After composer installs the package, run the following command to run the migration and register the routes.
php artisan url-shortene:install
Test
public function test_url_shortener() { $this->post(route('links.store'), [ 'long_url' => 'https://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers' ]); $this->assertDatabaseHas(config('urlshortener.table'), [ 'long_url' => 'https://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers' ]); }
Response
{ "id": 16, "long_url": "https://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers", "code": "5TPcKQ", "short_url": "https://123url.com/5TPcKQ", 🏹 "updated_at": "2023-03-25T04:59:32.000000Z", "created_at": "2023-03-25T04:59:32.000000Z" }
Credits
License
The MIT License (MIT). Please see License File for more information.