Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hacfi/parameter-update-bundle
Symfony Parameter Update Bundle
https://github.com/hacfi/parameter-update-bundle
Last synced: 12 days ago
JSON representation
Symfony Parameter Update Bundle
- Host: GitHub
- URL: https://github.com/hacfi/parameter-update-bundle
- Owner: hacfi
- License: mit
- Created: 2015-04-21T11:32:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-21T12:32:11.000Z (over 9 years ago)
- Last Synced: 2024-10-30T01:42:27.818Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Symfony Parameter Update Bundle
## Install
``` sh
composer require "hacfi/parameter-update-bundle":"dev-master"
```## Configuration
``` yml
hacfi_parameter_update:
parameters_file: "%kernel.root_dir%/config/parameters.yml"
values:
some_parameter1:
service: some_service_name:method1
parameters_file: "%kernel.root_dir%/config/local.yml"
parameters_key: parameters
some_parameter2:
service: [other_service_name, method2]
property_path: "[nested][some_bucketname2]"
some_parameter3:
service: [[some_service_name, test], ["argument 1", "argument 2"]]
```## Usage
Configure the values which should be generated via a service. Process them via
``` sh
app/console hacfi:update_parameter
```or individually
``` sh
app/console hacfi:update_parameter some_parameter1
```