phpsa/laravel-yourls-plugin 问题修复 & 功能扩展

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

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

phpsa/laravel-yourls-plugin

Composer 安装命令:

composer require phpsa/laravel-yourls-plugin

包简介

Plugin which integrates Laravel with Yourls (Your Own URL Shortener).

README 文档

README

For Laravel 5 Build Status styleci Scrutinizer Code Quality Coverage Status

Packagist Packagist Packagist Github Issues

Package description: Plugin which integrates Laravel with Yourls (Your Own URL Shortener).

Installation

Install via composer

composer require phpsa/laravel-yourls-plugin

Register Service Provider

Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

Phpsa\LaravelYourlsPlugin\ServiceProvider::class,

Register Facade

Register package facade in config/app.php in aliases section

'ShortUrl' => Phpsa\LaravelYourlsPlugin\Facades\LaravelYourlsPlugin::class,

Publish Configuration File (optional)

php artisan vendor:publish --provider="Phpsa\LaravelYourlsPlugin\ServiceProvider" --tag="config"

Configuration Settings

you can set the following values in your environment file

LARAVEL_YOURLS_PLUGIN_URL=
LARAVEL_YOURLS_PLUGIN_USERNAME=
LARAVEL_YOURLS_PLUGIN_PASSWORD=
LARAVEL_YOURLS_PLUGIN_SIGNATURE=
LARAVEL_YOURLS_PLUGIN_FORMAT=json

Authentication can use either the username / password combo or the signature

Usage

using the Facade: you can access the following methods:

shorturl

Generates a short url for your long url

\ShortUrl::shorturl(string $url [, string $title = NULL [], string $keyword = NULL [], string $format = NULL ]]] )

Parameters

  • $url - required - the url you wish to create a short url for
  • $title - optional - Title of the short url
  • $keyword - optional - Title for the short url (ie short.url/{keyword})
  • $format - optional - Change the format for this specific request (json / xml)

Returns string - the short url that was generated

expand

Expands inforation about your short url

\ShortUrl::expand(string $shorturl [, string $format = null] )

Parameters

  • $shorturl - required - the shorturl to expand (can be either 'abc' or 'http://site/abc')
  • $format - optional - Change the format for this specific request (json / xml)

Returns stdClass - object of the response details

urlStats

Get stats about one short URL

\ShortUrl::expand(string $shorturl [, string $format = null] )

Parameters

  • $shorturl - required - the shorturl to expand (can be either 'abc' or 'http://site/abc')
  • $format - optional - Change the format for this specific request (json / xml)

Returns stdClass - object of the response details

stats

Get stats about one short URL

\ShortUrl::stats( [string $filter = null [, int $limit = null [, string $format = null ]]] )

Parameters

  • $filter - optional - the filter: either "top", "bottom" , "rand" or "last"
  • $limit - optional - the limit (maximum number of links to return)
  • $format - optional - Change the format for this specific request (json / xml)

Returns stdClass - object of the response details

dbStats

Get stats about one short URL

\ShortUrl::dbStats([ string $format = null] )

Parameters

  • $format - optional - Change the format for this specific request (json / xml)

Returns stdClass - object of the response details

getLastResponse

Gets the full response body from the last request

\ShortUrl::getLastResponse()

Parameters N/A

Returns stdClass|string response of the last request body

Security

If you discover any security related issues, please email instead of using the issue tracker.

Credits

phpsa/laravel-yourls-plugin 适用场景与选型建议

phpsa/laravel-yourls-plugin 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.03k 次下载、GitHub Stars 达 17, 最近一次更新时间为 2019 年 07 月 09 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「laravel」 「Shorturl」 「url shortener」 「yourls」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 phpsa/laravel-yourls-plugin 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 phpsa/laravel-yourls-plugin 我们能提供哪些服务?
定制开发 / 二次开发

基于 phpsa/laravel-yourls-plugin 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

  • Stars: 17
  • Watchers: 1
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-07-09