thuraaung2493/laravel-config-types
最新稳定版本:v0.1.1
Composer 安装命令:
composer require thuraaung2493/laravel-config-types
包简介
A small wrapper types safe class for Laravel config.
README 文档
README
It supports Laravel 9+ and PHP 8.2+
Installation
composer require thuraaung2493/laravel-config-types
Usage
// Facades use Thuraaung\ConfigTypes\Facades\Config Config::string('app.name') // 'Laravel' // Via Service Container use Thuraaung\ConfigTypes\ConfigResolver; class Example { public function __construct( private readonly ConfigResolver $config, ) {} public function test(): string { return $this->config->string('app.name'); } } $example = new Example(); $example->test() // 'Laravel'
Test
composer test
License
This package is open-sourced software licensed under the MIT license
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-07-09