定制 minkbear/setting 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

minkbear/setting

最新稳定版本:1.2.0

Composer 安装命令:

composer require minkbear/setting

包简介

Persistent configuration settings for Laravel - Create, Read, Update and Delete settings stored in files using JSON

README 文档

README

Build Status

Laravel Setting (Laravel 5 package)

Persistent configuration settings for Laravel - Create, Read, Update and Delete settings stored in files using JSON.

This package was the result of me not being able to save new settings to config files in a more persistent way.

This package was designed not to replace the config solution currently offered by Laravel but rather complement it and be used in unison with it.

By default the data is stored in storage_path().'/app/setting.json' but this can be easily changed either in the config file or on the fly in realtime.

This package also provides a fallback for the Laravel Config facade, you can set it in the config, if the key is not found in the json file it will look it up in the Config facade.

Contributors

janhartigan (Treeface)
Nils Plaschke (Chumper)

Installation

Require this package in your composer.json:

"philf/setting": "dev-master"

And add the ServiceProvider to the providers array in app/config/app.php

'minkbear\Setting\SettingServiceProvider',

And publish the config file

php artisan vendor:publish --provider="minkbear\Setting\SettingServiceProvider"

Usage

##Config

return array(
'path'     => storage_path().'/app',
'filename' => 'setting.json',
'fallback' => true,
'autoAlias => true,
);

##Fallback capability built in. // Automatic fallback to Laravel config Setting::get('app.locale');

##Single dimension

set:        Setting::set('name', 'Phil')
get:        Setting::get('name')
forget:     Setting::forget('name')
has:        Setting::has('name')

#Multi dimensional

set:        Setting::set('names.firstName', 'Phil')
set:        Setting::set('names.surname', 'F')
    or
set:        Setting::set('names', array('firstName' => 'Phil', 'surname' => 'F'))
setArray:   Setting::setArray(array('firstName' => 'Phil', 'surname' => 'F'))
get:        Setting::get('names.firstName')
forget:     Setting::forget('names.surname'))
has:        Setting::has('names.firstName')

#Array processing // Get all of the entries in the names array $names = Setting::get('names');
foreach ($names as $key => $val) { ... }

    // Get the whole array
    $everything = Setting::get();

You can also clear the JSON file with the clear command

clear:      Setting::clear()

Using a different path (make sure the path exists and is writable) *

Setting::path(app_path().'/storage/meta/sub')->set('names2', array('firstName' => 'Phil', 'surname' => 'F'));

Using a different filename

Setting::filename('setting2.json')->set('names2', array('firstName' => 'Phil', 'surname' => 'F'));

Using both a different path and filename (make sure the path exists and is writable)

Setting::path(app_path().'/storage/meta/sub')->filename('dummy.json')->set('names2', array('firstName' => 'Phil', 'surname' => 'F'));

License

Laravel Setting is open-sourced software licensed under the MIT license

统计信息

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

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 28
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固