mysho / comgate-bundle
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 4
Type:symfony-bundle
Requires
- php: ^7.3|^8.0|^8.1|^8.2
- guzzlehttp/guzzle: ^7.9
- symfony/framework-bundle: 7.1.*
- symfony/yaml: ^7.1
README
A symfony bundle for Comgate payments
Installation
Step 1: Download MyshoComgateBundle using composer
Require the mysho/comgate-bundle
with composer Composer.
$ composer require mysho/comgate-bundle
Step 2: Enable the bundle
Enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Mysho\ComgateBundle\MyshoComgateBundle(), // ... ); }
Step 3: Configure the MyshoComgateBundle
Below is a minimal example of the configuration necessary to use the
MyshoComgateBundle
in your application:
# .env ###> mysho/comgate-bundle ### MERCHANT_ID="your merchant id" SECRET_KEY="secret key from comgate dashboard" TEST_MODE=false ###< mysho/comgate-bundle ###
Step 4: Usage of MyshoComgateBundle
# CartController /** * @Route("/cart/payment", name="cart_payment") * @param ComgateConnector $comgate * @param Request * @return Response */ public function payment(ComgateConnector $comgate): Response { $payment = new CreatePayment('PRICE', 'Your order ID', $this->getUser()->getEmail(), 'Some product'); // to create payment on background according to API requirements $payment->setPrepareOnly(true); $response = $comgate->send($payment); if($response->getMessage()=="OK"){ // do something with cart return $this->redirect($response->getRedirectUrl()); } return $this->render('cart/payment.html.twig', []); }