-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added possibility to define Paysera application routes via environmen…
…t variables (#27) * Added possibility to define Paysera application routes via environment variables * CHANGELOG * minor CS changes * minor CS changes * minor update * version change * README fix * Fixed bunch of typos Added WebToPay_EnvReader for decoupling WebToPay_Config from direct env variables interaction TODO: fix unit-tests * Fixed unit-tests * Fixed unit-tests * moved symfony/dotenv to require-dev * fixed WebToPay_EnvReaderTest * phpstan fixes * phpstan config
- Loading branch information
1 parent
8606e19
commit a9e9684
Showing
26 changed files
with
2,388 additions
and
1,004 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,13 @@ | ||
PAY_URL=https://bank.paysera.com/pay/ | ||
PAYSERA_PAY_URL=https://bank.paysera.com/pay/ | ||
XML_URL=https://www.paysera.com/new/api/paymentMethods/ | ||
|
||
PRODUCTION_PUBLIC_KEY=https://www.paysera.com/download/public.key | ||
PRODUCTION_PAYMENT=https://bank.paysera.com/pay/ | ||
PRODUCTION_PAYMENT_METHOD_LIST=https://www.paysera.com/new/api/paymentMethods/ | ||
PRODUCTION_SMS_ANSWER=https://bank.paysera.com/psms/respond/ | ||
|
||
SANDBOX_PUBLIC_KEY=https://sandbox.paysera.com/download/public.key | ||
SANDBOX_PAYMENT=https://sandbox.paysera.com/pay/ | ||
SANDBOX_PAYMENT_METHOD_LIST=https://sandbox.paysera.com/new/api/paymentMethods/ | ||
SANDBOX_SMS_ANSWER=https://sandbox.paysera.com/psms/respond/ |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
coverage | ||
.bash_history | ||
.php-cs-fixer.cache | ||
/src/.env |
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
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
Oops, something went wrong.