mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-14 16:46:30 +03:00
Add tienvx/mbt-bundle
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
tienvx_mbt:
|
||||
slack_hook_url: '%env(SLACK_HOOK_URL)%'
|
||||
slack_from: '%env(SLACK_FROM)%'
|
||||
slack_to: '%env(SLACK_TO)%'
|
||||
slack_message: '%env(SLACK_MESSAGE)%'
|
||||
email_from: '%env(EMAIL_FROM)%'
|
||||
email_to: '%env(EMAIL_TO)%'
|
||||
email_subject: '%env(EMAIL_SUBJECT)%'
|
||||
|
||||
flysystem:
|
||||
storages:
|
||||
mbt.storage:
|
||||
adapter: 'local'
|
||||
options:
|
||||
directory: "%kernel.project_dir%/var/storage/screenshots"
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"bundles": {
|
||||
"Tienvx\\Bundle\\MbtBundle\\TienvxMbtBundle": ["all"]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/",
|
||||
"var/storage/screenshots/": "%VAR_DIR%/storage/screenshots/"
|
||||
},
|
||||
"env": {
|
||||
"SLACK_HOOK_URL": "https://hooks.slack.com/...",
|
||||
"SLACK_FROM": "Example",
|
||||
"SLACK_TO": "#a-channel or @a-person",
|
||||
"SLACK_MESSAGE": "A new bug was found!",
|
||||
"EMAIL_FROM": "from@example.com",
|
||||
"EMAIL_TO": "to@example.com",
|
||||
"EMAIL_SUBJECT": "A new bug was found!"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user