makinacorpus/preferences-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

makinacorpus/preferences-bundle

最新稳定版本:1.1.1

Composer 安装命令:

composer require makinacorpus/preferences-bundle

包简介

Preferences are configuration variables that are user-managed for which we cannot rely upon container parameters or environment variables.

README 文档

README

Preferences are configuration variables that are meant to be user managed for which we cannot rely upon container parameters or environment variables.

This bundle provides a simple API for:

  • Defining a preferences variable schema, with variable name, type, and description.

  • Reading them as environment variables by the container, in order to allow using those variables as services parameters.

  • A form type which handles all basic types (int, type, string) as collections or single-values variables, which you can use in any form.

  • An implementation for storing user values in database using makinacorpus/goat-query.

  • Bus handlers and messages for symfony/messenger, makinacorpus/goat and makinacorpus/corebus.

  • An interface for reading the schema defined in project configuration.

  • An interface for reading values.

Setup

This package is depends on makinacorpus/goat-query.

Simply install this package:

composer require makinacorpus/preferences-bundle

Then add the bundle into your config/bundles.php file:

<?php

return [
    // ... Your other bundles.
    MakinaCorpus\Preferences\PreferencesBundle::class => ['all' => true],
];

Define a custom schema

You can define a schema:

preferences:
    schema:
        app.domain.some_variable:
            label: Some variable
            description: Uncheck this value to deactive this feature
            type: bool
            collection: false
            default: true

Where the number of entries is unlimited. Only limit is your memory because the whole definition will be injected as a bare PHP array into the default array schema implementation.

Please note that because Symfony environment variables processor validates strictly the variables names, all non alpha-numeric and non _ characters will make the environment variable processor fail. If you plan to inject your variables into services using environment variables, you must name your variables accordingly, such as:

preferences:
    schema:
        app_domain_some_variable:
            label: Some variable
            description: Uncheck this value to deactive this feature
            type: bool
            collection: false
            default: true

All options are optional. Defaults are:

preferences:
    enabled: true
    schema:
        app_domain_some_variable:
            label: null
            description: null
            type: string
            allowed_values: null
            collection: false
            hashmap: false
            default: null

Parameters you can set on each variable definition:

  • label: is a human readable short name,
  • description: is a human readable long description,
  • type: can be either of: string, bool, int, float,
  • allowed_values: is an array of arbitrary values, for later validation,
  • collection: if set to true, multiple values are allowed for this variable,
  • hashmap: if set to true, keys are allowed, this is ignored if collection is false,
  • default: arbitrary default value if not configured by the user.

Usage

Inject preferences as service arguments

This package defines a EnvVarProcessorInterface implementation allowing to inject preferences like environment variables, such as:

services:
    my_service:
        class: App\Some\Class
        arguments: ["%env(preference:app_domain_some_variable)%"]

Use Preferences service into other services.

Type hint your injected parameters using MakinaCorpus\Preferences\Preferences then use the get(string $name): mixed method to fetch values.

Long term roadmap

  • Add new repository implementations (Redis, PDO, other...).
  • Implement correctly bus handlers.
  • Implement PHP schema dumper.

统计信息

  • 总下载量: 4.47k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: GPL-2.0-or-later
  • 更新时间: 2022-02-07