bradietilley/laravel-shortify

Shorten URLs from within Laravel

Maintainers

Package info

github.com/bradietilley/laravel-shortify

pkg:composer/bradietilley/laravel-shortify

Transparency log

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v0.3.0 2026-07-23 12:58 UTC

This package is auto-updated.

Last update: 2026-07-23 13:56:06 UTC


README

URL shortening with visit tracking for Laravel.

Static Analysis Tests Laravel Version PHP Version

Documentation

Full documentation is available at bradietilley.dev/laravel-shortify.

Installation

composer require bradietilley/laravel-shortify
php artisan vendor:publish --tag="shortify-config"
php artisan vendor:publish --tag="shortify-migrations"
php artisan migrate
use BradieTilley\Shortify\Shortify;

$short = Shortify::url('https://example.com/very/long/path');

echo $short->url; // https://your-app.test/s/Ws4BYCVLDDDh

Credits