raza9798/siteconfig
最新稳定版本:3.2
Composer 安装命令:
composer require raza9798/siteconfig
包简介
A Laravel package for managing site configurations.
README 文档
README
This Laravel package provides a simple and efficient way to manage site settings / enviromental variables via database. You can store, retrieve, update, and delete configuration settings on a application using the SiteConfig class.
Installation
To install the package, add it to your Laravel project using Composer:
$ composer require raza9798/siteconfig $ php artisan siteconfig:env-sync
Usage
usage in the web base application
# import facade use Core\Siteconfig\Config; # working with method Config::save('phone', '123'); # store method Config::show('phone'); # get method Config::update('phone', '18487'); # update method Config::delete('phone'); #delete method Config::list(); # showing all variables as array
统计信息
- 总下载量: 4.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-05-12