jiemoon / chinese-slug
Laravel Package for translate string to english, then use it to create a slug
0.1.0
2017-04-09 02:34 UTC
Requires
- php: >=5.6.4
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- mockery/mockery: 0.9.*
- phpunit/phpunit: ^6.0
This package is not auto-updated.
Last update: 2025-04-27 00:16:21 UTC
README
Laravel Package for translate string to english, then use it to create a slug.
Structure
If any of the following are applicable to your project, then the directory structure should follow industry best practises by being named the following..
src/
tests/
Install
Via Composer
$ composer require jiemoon/chinese-slug
Usage
Modify .env
, Add Biadu Fanyi Config.
You can get the config, after register an account in api.fanyi.baidu.com
BAIDU_FANYI_API_ID=xxx
BAIDU_FANYI_API_SECRET=xxx
Edit cofig/app.php
Add Provider and Alias
Jiemoon\ChineseSlug\ChineseSlugServiceProvider::class, ... 'ChineseSlug' => Jiemoon\ChineseSlug\Facades\ChineseSlug::class,
$slug = \ChineseSlug::generateUniqueSlug($title, 'posts'); # or $slug = app('chineseslug')->generateUniqueSlug($title, 'posts');
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
$ phpunit
License
The MIT License (MIT). Please see License File for more information.