Merge pull request #901

This commit is contained in:
symfony-flex-server[bot]
2020-04-26 09:16:41 +00:00
committed by GitHub
3 changed files with 25 additions and 0 deletions
@@ -0,0 +1,9 @@
otobul_epaybg:
# Identification number of the merchant
min: '%env(OTOBUL_EPAYBG_MIN)%'
# The secret word of the merchant
secret: '%env(OTOBUL_EPAYBG_SECRET)%'
# If true all requests will be sent to ePay.bgs Demo System
isDemo: '%env(bool:OTOBUL_EPAYBG_IS_DEMO)%'
@@ -0,0 +1,3 @@
otobul_epaybg:
resource: '@OtobulEpaybgBundle/Resources/config/routes.xml'
prefix: /webhook/epaybg
+13
View File
@@ -0,0 +1,13 @@
{
"bundles": {
"Otobul\\EpaybgBundle\\OtobulEpaybgBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"OTOBUL_EPAYBG_MIN": "YOUR_EPAYBG_MIN",
"OTOBUL_EPAYBG_SECRET": "YOUR_EPAYBG_SECRET",
"OTOBUL_EPAYBG_IS_DEMO": "true"
}
}