orlovtech/short-link 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

orlovtech/short-link

最新稳定版本:v0.6.0

Composer 安装命令:

composer require orlovtech/short-link

包简介

Link shortener package for Laravel

README 文档

README

Latest Version PHP Version Tests Total Downloads

Table of Contents

Overview

A Laravel package that can be used for adding shortened URLs to your existing web app.

Installation

Requirements

The package has been developed and tested to work with the following minimum requirements:

  • PHP >=8.1
  • Laravel >=9.0

Install the Package

You can install the package via Composer:

composer require orlovtech/short-link

Publish the Config and Migrations

You can then publish the package's config file and database migrations by using the following command:

php artisan vendor:publish --provider="OrlovTech\ShortLink\Providers\ShortLinkServiceProvider"

at this config file you can change the prefix you want to use. By default it's a /short/.

Migrate the Database

This package contains one migration that add a new table to the database: short_links. To run this migration, simply run the following command:

php artisan migrate

Generate the Link

The fastest way to generate new link is to use the facade OrlovTech\ShortLink\Facades\ShortLink like this:

ShortLink::generate('https://yourlink.com');

This method will return you short version of your link.

Method generate also has the second parameter singleUse as an option. With this parameter you can specify that your link should be deleted after it was used for the first time.

So the full view might be:

ShortLink::generate(
    'https://yourlink.com',
    singleUse: true,
);

To show ready link use param default_short_url like so:

$link = ShortLink::generate('https://yourlink.com');

echo config('app.url') . $link->default_short_url;

Use the link

When you have ready link you can use the endpoint https://yourdomain.com/short/628ac418-865a

where short is the prefix from config file

Testing

To run the package's unit tests, run the following command:

vendor/bin/phpunit

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 770
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-07-24