-
-
Notifications
You must be signed in to change notification settings - Fork 631
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial configuration and setup for MVola bundle
Add initial configuration and setup for MVola bundle Add initial configuration and setup for MVola bundle Reorganize MVola bundle files for version 1.0 Correct bundle namespace in manifest for MVola version 1.0
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mvola: | ||
environment: '%env(MVOLA_ENVIRONMENT)%' | ||
merchant_number: '%env(MVOLA_MERCHANT_NUMBER)%' | ||
company_name: '%env(MVOLA_COMPANY_NAME)%' | ||
consumer_key: '%env(MVOLA_CONSUMER_KEY)%' | ||
consumer_secret: '%env(MVOLA_CONSUMER_SECRET)%' | ||
auth_url: '%env(MVOLA_AUTH_URL)%' | ||
max_retries: 3 | ||
retry_delay: 1000 | ||
cache_ttl: 3600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
mvola: | ||
resource: '@DahRomyMVolaBundle/Resources/config/routes.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"bundles": { | ||
"DahRomy\\MVola\\DahRomyMVolaBundle": ["all"] | ||
}, | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%" | ||
}, | ||
"env": { | ||
"MVOLA_ENVIRONMENT": "sandbox", | ||
"MVOLA_CONSUMER_KEY": "your_consumer_key_here", | ||
"MVOLA_CONSUMER_SECRET": "your_consumer_secret_here", | ||
"MVOLA_MERCHANT_NUMBER": "your_merchant_number_here", | ||
"MVOLA_COMPANY_NAME": "your_company_name_here", | ||
"MVOLA_AUTH_URL": "https://sandbox.mvola.mg/token" | ||
} | ||
} |