Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PIPRES-523 new payment method: MBway #1020

Open
wants to merge 5 commits into
base: release-6.2.6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>

# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
2 changes: 2 additions & 0 deletions src/Config/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class Config
'riverty' => ['nl', 'be', 'de', 'at'],
'payconiq' => [],
'paybybank' => ['at', 'be', 'cy', 'ee', 'fi', 'fr', 'de', 'gr', 'ie', 'it', 'lv', 'lt', 'lu', 'mt', 'nl', 'pt', 'sk', 'si', 'es', 'uk'],
'mbway' => ['pt'],
];

const SUPPORTED_PHP_VERSION = '5.6';
Expand Down Expand Up @@ -335,6 +336,7 @@ class Config
'trustly' => 'Trustly',
'satispay' => 'Satispay',
'paybybank' => 'Pay by Bank',
'mbway' => 'MBway',
];

public const LOG_SEVERITY_LEVEL_INFORMATIVE = 1;
Expand Down
Loading