| @@ -6,8 +6,10 @@ | ||
| 6 | 6 | use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\PaystackAddon; |
| 7 | 7 | use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\RazorpayAddon; |
| 8 | 8 | use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\MercadoPagoAddon; |
| 9 | 9 | use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\FlutterwaveAddon; |
| 10 | +use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\SquareAddon; | |
| 11 | +use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\SslcommerzAddon; | |
| 10 | 12 | |
| 11 | 13 | class AddonGatewaysHandler |
| 12 | 14 | { |
| 13 | 15 | /** |
| @@ -14,12 +16,14 @@ | ||
| 14 | 16 | * Default addon gateways to register |
| 15 | 17 | * @var array |
| 16 | 18 | */ |
| 17 | 19 | protected $defaultGateways = [ |
| 18 | - 'paystack' => PaystackAddon::class, | |
| 19 | - 'razorpay' => RazorpayAddon::class, | |
| 20 | + 'paystack' => PaystackAddon::class, | |
| 21 | + 'razorpay' => RazorpayAddon::class, | |
| 20 | 22 | 'mercado_pago' => MercadoPagoAddon::class, |
| 21 | 23 | 'flutterwave' => FlutterwaveAddon::class, |
| 24 | + 'square' => SquareAddon::class, | |
| 25 | + 'sslcommerz' => SslcommerzAddon::class, | |
| 22 | 26 | ]; |
| 23 | 27 | |
| 24 | 28 | public function register() |
| 25 | 29 | { |