haithemdev/clictopay-bundle

Ready-to-use Symfony Bundle for ClicToPay (SMT Tunisia) Payment Gateway. Supports multi-account, event-driven architecture, and built-in webhook handling.

Maintainers

Package info

github.com/haithemdev/clictopay-bundle

Type:symfony-bundle

pkg:composer/haithemdev/clictopay-bundle

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-04-03 22:19 UTC

This package is auto-updated.

Last update: 2026-04-03 22:23:47 UTC


README

Tests Latest Stable Version License

A reusable Symfony bundle for integrating the ClicToPay (SMT Tunisia) payment gateway.

Features

  • Direct API Integration: Handles register.do and getOrderStatus.do.
  • Event-Driven Architecture: Like modern Symfony bundles, it dispatches events for clean code decoupling (ClicToPayEvents::PAYMENT_VERIFIED).
  • Multi-Account / Multi-Tenant: Supports having different API keys for different clients dynamically.
  • Built-in Webhook Controller: Ready-to-use webhook route to verify payments.
  • TND Decimal Support: Automatically converts amounts to millimes (subunits).

Installation

composer require haithemdev/clictopay-bundle

(Note: Once published on Packagist. Until then, use a local path repository).

Configuration

Mode Simple (Standard)

Create a config/packages/clic_to_pay.yaml file:

clic_to_pay:
    mode: '%env(CLICTOPAY_MODE)%' # 'test' or 'prod'
    user_name: '%env(CLICTOPAY_USER_NAME)%'
    password: '%env(CLICTOPAY_PASSWORD)%'

Mode Avancé (Multiple Accounts)

clic_to_pay:
    accounts:
        main:
            user_name: '...'
            password: '...'
            mode: 'prod'
        sandbox:
            user_name: '...'
            password: '...'
            mode: 'test'

And update your .env:

CLICTOPAY_MODE=test
CLICTOPAY_USER_NAME=your_api_username
CLICTOPAY_PASSWORD=your_api_password

Usage

1. Generate a Payment URL

In your controller, use the ClicToPayManager to register a payment and get the redirection URL.

use Hdev\ClicToPayBundle\Service\ClicToPayManager;
use Symfony\Component\Routing\Annotation\Route;

/**
 * @Route("/checkout/payment", name="app_payment")
 */
public function pay(ClicToPayManager $manager)
{
    $service = $manager->getDefault(); // or $manager->get('sandbox')
    
    $response = $service->registerPayment(
        'ORD-12345',
        150.500, // TND
        $this->generateUrl('app_payment_confirm', [], UrlGeneratorInterface::ABSOLUTE_URL)
    );

    // Redirect the user to ClicToPay secure page
    return $this->redirect($response['formUrl']);
}

2. Handling Payments (Events)

Create a listener to handle successful payments cleanly:

use Hdev\ClicToPayBundle\Event\ClicToPayEvents;
use Hdev\ClicToPayBundle\Event\PaymentVerifiedEvent;
use Symfony\Component\EventDispatcher\Attribute\AsEventListener;

#[AsEventListener(event: ClicToPayEvents::PAYMENT_VERIFIED)]
public function onPaymentVerified(PaymentVerifiedEvent $event): void
{
    // ClicToPay OrderStatus = 2 means Approved
    if ($event->isApproved()) {
        $orderId = $event->getCtpOrderId();
        $details = $event->getPaymentData();
        
        // Update your order in database!
    }
}

3. Built-in Webhook

The bundle includes a ready-to-use controller. You can give this link to your clients or use it directly as your returnUrl:

https://your-app.com/clictopay/webhook/default

Testing

vendor/bin/phpunit

License

MIT

About

Ready-to-use Symfony Bundle for ClicToPay (SMT Tunisia) Payment Gateway. Optimized for multi-account and client-specific integrations with event-driven architecture.