Add recipe for otobul/epaybg-bundle

This commit is contained in:
Georgi Gabrovski
2020-04-13 10:03:58 +03:00
parent 4838b95a1d
commit 540a9ebbc6
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
}
}