File "ModuleProvider.php"
Full Path: /home/bettaeza/flyinsyria.com/.well-known/PaymentTwoCheckout/ModuleProvider.php
File size: 968 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Plugins\PaymentTwoCheckout;
use Modules\ModuleServiceProvider;
use Plugins\PaymentTwoCheckout\Gateway\TwoCheckoutGateway;
class ModuleProvider extends ModuleServiceProvider
{
public function register()
{
$this->app->register(RouterServiceProvider::class);
}
public static function getPaymentGateway()
{
return [
'two_checkout_gateway' => TwoCheckoutGateway::class
];
}
public static function getPluginInfo()
{
return [
'title' => __('Gateway 2Checkout'),
'desc' => __('Gateway 2Checkout is one of the best payment Gateway to accept online payments from buyers around the world which allow your customers to make purchases in many payment methods, 15 languages, 87 currencies, and more than 200 markets in the world.'),
'author' => "Booking Core",
'version' => "1.0.0",
];
}
}