philetaylor/hashids-bundle
Composer 安装命令:
composer require philetaylor/hashids-bundle
包简介
Bundle for integration of hashids lib to the container
关键字:
README 文档
README
hashidsBundle
This is a bundle to use http://www.hashids.org/ as a service
Installation
Symfony 2.1.x <= 2.4.x: Composer
Composer is a project dependency manager for PHP. You have to list
your dependencies in a composer.json file:
{
"require": {
"cayetanosoriano/hashids-bundle": "dev-master"
}
}
To actually install in your project, download the composer binary and run it:
wget http://getcomposer.org/composer.phar
# or
curl -O http://getcomposer.org/composer.phar
php composer.phar install
Step 2: Enable the bundle
Finally, enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new cayetanosoriano\HashidsBundle\cayetanosorianoHashidsBundle(), ); }
Configuration
Add the following to your config.yml
cayetanosoriano_hashids: salt: "randomsalt" #optional min_hash_length: 10 #optional alphabet: "abcd..." #optional
Then use the service
$kcy = $this->get('hashids');
Optional features
Doctrine param converter
The included Doctrine param converter extends the one included in (SensioFrameworkExtraBundle)[http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html] to automate decoding of Hashids in routes before fetching the object.
Overload the default service to your services.yml
sensio_framework_extra.converter.doctrine.orm: class: cayetanosoriano\HashidsBundle\Request\ParamConverter\HashidsDoctrineParamConverter arguments: ["@hashids", "@doctrine"] tags: [{ name: request.param_converter, converter: doctrine.orm }]
Specify the Hashid in your route
The following two examples are equivalent, using either the raw database id or
the Hashid encoded version.
Raw id (standard SensioFrameworkExtraBundle behaviour)
/** * @Route("/user/{id}", requirements={"id"="\d+"}, name="user_view") */ public function viewAction(User $user) { … }
Hashid
The hashid request parameter will be automatically recognised as an encoded
version of id.
/** * @Route("/user/{hashid}", requirements={"hashid"="[A-Za-z0-9_-]+"}, name="user_view") */ public function viewAction(User $user) { … }
license
=======
Twig extension
Declare the service to your services.yml
twig.hashids_extension: class: cayetanosoriano\HashidsBundle\Twig\HashidsExtension arguments: ["@hashids"] public: false tags: [{ name: twig.extension }]
Use the extension in your Twig templates
<a href="{{ path('user_profile', {'hashid': user.id|hashid_encode}) }}">View Profile</a>
License
Copyright (c) 2015 neoshadybeat[at]gmail.com
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
philetaylor/hashids-bundle 适用场景与选型建议
philetaylor/hashids-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.66k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 01 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「hashids」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 philetaylor/hashids-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 philetaylor/hashids-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 philetaylor/hashids-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dynamically create a hash of an Eloquent model id value to avoid exposing a record's actual database id.
Hashids for Yii2
A collection of observer classes that can be use in your Laravel application.
Provides hash tools for Laravel.
Webman Hashids Used to generate a youtube-like ID from a digital ID
♺ Laravel Nova Hashids card. Convert your ids.
统计信息
- 总下载量: 8.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-01-06