承接 kiwa/hyphenizer 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

kiwa/hyphenizer

Composer 安装命令:

composer require kiwa/hyphenizer

包简介

Perfect hyphenation for your Website. This library integrates the Hyphenizer into your Kiwa website.

README 文档

README

PHP from Packagist Latest Stable Version Total Downloads License

Kiwa Logo

Kiwa Hyphenizer

Perfect hyphenation for your Website. This library integrates the Hyphenizer into your Kiwa website.

If you don't run your website with Kiwa, you can integrate the Hyphenizer SDK for PHP by your own.

Please note: The Hyphenizer API requires you to have a valid API token.

Installation

This library is made for the use with Composer. Add it to your project by running $ composer require kiwa/hyphenizer.

Usage

Basic setup and usage of the Kiwa Hyphenizer library

The Kiwa Hyphenizer library offers a smooth way to extract and hyphenate long words automatically. It implements the Hyphenizer SDK for PHP and allows to update the extracted words.

To use this library in your project, wrap your texts with the AutoHyphenation class. This will add soft hyphens to all words, that are long enough to be hyphenated:

<?php

use Kiwa\Hyphenizer\AutoHyphenation;

echo new AutoHyphenation('Wir suchen nach Bodenseefelchen.');

Inside, the class extracts all words having more than 12 characters, and searches for a previously defined hyphenation. You can change this value when initialising the class.

The hyphenations themselves are stored inside a JSON file using a pipe, for example

{
    "Bodenseefelchen": "Bodensee|felchen"
}

whereas the pipe is getting replaced afterwards by the defined hyphenation character. This is a soft hyphen per default. You can change the hyphenation character when initialising the class.

The JSON file is getting stored under /hyphenation/words-hyphenated.json.

The list of extracted words will grow over time. You can add hyphenations by yourself, by modifying the JSON file, but it's also possibly to do this via script:

<?php

use Kiwa\Hyphenizer\HyphenationLibraryFactory;

HyphenationLibraryFactory::create()->setHyphenationWords([
    'Bodenseefelchen' => 'Bodensee|felchen',
]);

This is the manual approach. The approach that you’ll really enjoy is:

Using the Hyphenation API for automatic hyphenation

This library provides a command, to contact the Hyphenation API and ask for validated hyphenations:

$ vendor/bin/kiwa-hyphenizer hyphenation:list:hyphenate 

Please note: If you're using this library in a project using the kiwa/console, the command is available calling bin/console.

The response will contain more information about every hyphenated word, for example a score and if the hyphenation has been approved. The response will also be stored in the words-hyphenated.json file.

Extracting words manually

If you don't want to wait, until your hyphenation list contains all words from your project, you can manually scan your files and extract the words from there:

$ vendor/bin/kiwa-hyphenizer hyphenation:list:create 

Using the hyphenations with JavaScript

If you want to use the hyphenations in JavaScript, you can use the Hyphenation library written in JavaScript to do that. In this case, you need to import your words-hyphenated.json before initialising the class:

import { Hyphenation } from "kiwa-hyphenizer";
import hyphenatedWords from "hyphenation/words-hyphenated.json";

const hyphenation = new Hyphenation(hyphenatedWords.words);

Help

If you have any questions, feel free to contact us under hello@bitandblack.com.

Further information about Bit&Black can be found under www.bitandblack.com.

kiwa/hyphenizer 适用场景与选型建议

kiwa/hyphenizer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.73k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 01 月 11 日, 在 PHP 生态内属于活跃度较高的组件。

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

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

围绕 kiwa/hyphenizer 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-01-11