chihyulin66/laravel-json-helper
最新稳定版本:v1.0.0
Composer 安装命令:
composer require chihyulin66/laravel-json-helper
包简介
README 文档
README
introduction
I just want json encode/decode beautifully.
install
Install the package via composer
composer require chihyulin66/laravel-json-helper
Add Provider to config/app.php:
'providers' => [ /* * Package Service Providers... */ ChihYuLin66\LaravelJsonHelper\JsonServiceProvider::class ]
Add the Facade in config/app.php:
'aliases' => [ // ... 'Json' => ChihYuLin66\LaravelJsonHelper\JsonFacade::class, ]
Usage
// use use ChihYuLin66\LaravelJsonHelper\Json; $json = Json::encode($value); $value = Json::decode($json); // anywhere $json = app('json')->encode($value); $value = app('json')->decode($json);
统计信息
- 总下载量: 215
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-11-03