Skip to content

Commit 1ba8970

Browse files
authored
Support for First Atlantic Commerce Payment Gateway (#206)
* Support for First Atlantic Commerce Payment Gateway - Default behaviour of the gateway is as follows: 1. Direct Integration implementation (https://firstatlanticcommerce.com/resources/integrationguides/) 2. 3DS Authorization is ON by default. 3. PHP must be configured to use secure session cookies ini_set('session.cookie_secure', 1); ini_set('session.cookie_samesite', 'None'); * Fixed formatting
1 parent d497404 commit 1ba8970

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
/**
3+
* @author Ricardo Assing (ricardo@tsiana.ca)
4+
*
5+
* CiviCRM specific file to be used with
6+
* eileenmcnaughton/nz.co.fuzion.omnipaymultiprocessor
7+
*/
8+
return [
9+
[
10+
'name' => 'OmniPay - FirstAtlanticCommerce FAC',
11+
'entity' => 'payment_processor_type',
12+
'params' => [
13+
'version' => 3,
14+
'title' => 'OmniPay - First Atlantic Commerce',
15+
'name' => 'omnipay_FirstAtlanticCommerce_FAC',
16+
'description' => 'OmniPay - First Atlantic Commerce Payment Processor',
17+
'user_name_label' => 'Fac Id',
18+
'password_label' => 'Fac Pwd',
19+
'class_name' => 'Payment_OmnipayMultiProcessor',
20+
'billing_mode' => 1,
21+
'payment_type' => 1,
22+
'is_recur' => 0,
23+
]
24+
],
25+
];

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
"dioscouri/omnipay-cybersource": "^3.0@dev",
3737
"fuzion/omnipay-mercanet": "^3.0@dev",
3838
"razorpay/omnipay-razorpay": "^3.0@dev",
39-
"clue/stream-filter": "^1.4.1"
39+
"clue/stream-filter": "^1.4.1",
40+
"cloudcogsio/omnipay-firstatlanticcommerce-gateway" : "~1.0.0"
4041
},
4142
"replace": {
4243
"guzzlehttp/guzzle": "^6.0",
@@ -55,4 +56,4 @@
5556
"php": "7.2.0"
5657
}
5758
}
58-
}
59+
}

0 commit comments

Comments
 (0)