gupalo/config-bundle

Config Bundle

Installs: 8 111

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

1.4.2 2022-05-20 11:41 UTC

This package is auto-updated.

Last update: 2024-04-20 15:58:58 UTC


README

Install

Composer

composer req gupalo/config-bundle

Check if bundle was added to config/bundles.php

Gupalo\ConfigBundle\ConfigBundle::class => ['all' => true],

Add routes - create config/routes/config.yaml

config:
    resource: "@ConfigBundle/Resources/config/routing/routing.yaml"

Override translations if needed in translations/messages.en.yaml (see Resources/translations for possible values).

Create config table in DB

php bin/console make:migration
php bin/console doctrine:migrations:migrate -n

Add to service.yaml possible values and default values

parameters:
    ...
    config.defaults:
        SOME_PARAM: 0
        OTHER_PARAM: '-2 days'

Usage

Go to /config in browser.