gupalo / config-bundle
Config Bundle
Installs: 9 069
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.2
- ext-json: *
- doctrine/doctrine-bundle: ^2.13
- doctrine/orm: ^3.0
- gupalo/browser-notifier: ^1.0
- gupalo/dateutils: ^1.13
- symfony/cache: ^6.4|^7.1
- symfony/form: ^6.4|^7.1
- symfony/framework-bundle: ^6.4|^7.1
- symfony/http-foundation: ^6.4|^7.1
- symfony/notifier: ^6.4|^7.1
- symfony/translation: ^6.4|^7.1
- symfony/yaml: ^6.4|^7.1
- twig/twig: ^3.3
Requires (Dev)
- phpspec/prophecy-phpunit: ^2.0
- phpunit/phpunit: ^10.5
- roave/security-advisories: dev-latest
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.