Skip to content

Commit b73378d

Browse files
committed
Adding previously removed dependecy.
- "Support/CreditCard.php" uses League\ISO3166 for country code resolution.
1 parent 4256aa4 commit b73378d

File tree

2 files changed

+22
-19
lines changed

2 files changed

+22
-19
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"description" : "First Atlantic Commerce (FAC) Payment Gateway Driver for Omnipay",
1919
"minimum-stability" : "dev",
2020
"require" : {
21-
"omnipay/common" : "^3"
21+
"omnipay/common" : "^3",
22+
"league/iso3166" : "~2.1.0"
2223
},
2324
"autoload" : {
2425
"psr-4" : {
Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
<?php
22
/**
3-
* CiviCRM specific file to be used with
4-
* eileenmcnaughton/nz.co.fuzion.omnipaymultiprocessor
3+
* @author Ricardo Assing (ricardo@tsiana.ca)
4+
*
5+
* CiviCRM specific file to be used with
6+
* eileenmcnaughton/nz.co.fuzion.omnipaymultiprocessor
57
*/
68
return [
7-
[
8-
'name' => 'OmniPay - FirstAtlanticCommerce FAC',
9-
'entity' => 'payment_processor_type',
10-
'params' => [
11-
'version' => 3,
12-
'title' => 'OmniPay - First Atlantic Commerce',
13-
'name' => 'omnipay_FirstAtlanticCommerce_FAC',
14-
'description' => 'OmniPay - First Atlantic Commerce Payment Processor',
15-
'user_name_label' => 'Fac Id',
16-
'password_label' => 'Fac Pwd',
17-
'class_name' => 'Payment_OmnipayMultiProcessor',
18-
'billing_mode' => 1,
19-
'payment_type' => 1,
20-
'is_recur' => 0,
21-
]
22-
],
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+
],
2325
];

0 commit comments

Comments
 (0)