phpsa/laravel-yourls-plugin
Composer 安装命令:
composer require phpsa/laravel-yourls-plugin
包简介
Plugin which integrates Laravel with Yourls (Your Own URL Shortener).
README 文档
README
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 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 phpsa/laravel-yourls-plugin 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Zend Framework 1 Service ShortUrl package
Easy URL rewrites in your Laravel application
Create short URLs via Bit.ly, tagged with Google Analytics Campaign data.
A Laravel helper to detect if the current route/path is active.
Provides a service and twig extension for getting short urls like http://your.host/~short
Generate short url | PHP实现轻量稳定且易用短链接短网址服务
统计信息
- 总下载量: 3.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 17
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-07-09