diff --git a/otobul/epaybg-bundle/1.0/config/packages/otobul_epaybg.yaml b/otobul/epaybg-bundle/1.0/config/packages/otobul_epaybg.yaml new file mode 100644 index 00000000..edb8c795 --- /dev/null +++ b/otobul/epaybg-bundle/1.0/config/packages/otobul_epaybg.yaml @@ -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.bg’s Demo System + isDemo: '%env(bool:OTOBUL_EPAYBG_IS_DEMO)%' diff --git a/otobul/epaybg-bundle/1.0/config/routes/otobul_epaybg.yaml b/otobul/epaybg-bundle/1.0/config/routes/otobul_epaybg.yaml new file mode 100644 index 00000000..1e6fe676 --- /dev/null +++ b/otobul/epaybg-bundle/1.0/config/routes/otobul_epaybg.yaml @@ -0,0 +1,3 @@ +otobul_epaybg: + resource: '@OtobulEpaybgBundle/Resources/config/routes.xml' + prefix: /webhook/epaybg diff --git a/otobul/epaybg-bundle/1.0/manifest.json b/otobul/epaybg-bundle/1.0/manifest.json new file mode 100644 index 00000000..4667e727 --- /dev/null +++ b/otobul/epaybg-bundle/1.0/manifest.json @@ -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" + } +}