PHPackages                             yproximite/payum-axepta-bnp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. yproximite/payum-axepta-bnp

ActiveLibrary[Payment Processing](/categories/payments)

yproximite/payum-axepta-bnp
===========================

Axepta gateway for Payum

v0.4.1(2y ago)31.6k—0%1[3 PRs](https://github.com/Yproximite/payum-axepta-bnp/pulls)MITPHPPHP &gt;=7.4

Since May 11Pushed 2y ago5 watchersCompare

[ Source](https://github.com/Yproximite/payum-axepta-bnp)[ Packagist](https://packagist.org/packages/yproximite/payum-axepta-bnp)[ RSS](/packages/yproximite-payum-axepta-bnp/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (8)Versions (10)Used By (0)

Payum Axepta by BNP
===================

[](#payum-axepta-by-bnp)

> A Payum gateway to use [Axepta](https://docs.axepta.bnpparibas/display/DOCBNP/Documentation+Axepta+BNP+Paribas+-++Home) (a French payment system)

[![Latest Stable Version](https://camo.githubusercontent.com/5b5979167469f24d2906ecbfdb1743aad592337907f31c8556ea24f9684c1713/68747470733a2f2f706f7365722e707567782e6f72672f7970726f78696d6974652f706179756d2d6178657074612d626e702f76657273696f6e)](https://packagist.org/packages/yproximite/payum-axepta-bnp)[![Build Status](https://camo.githubusercontent.com/2675b324f6c11d9fa5b6fd94f98a64d70efbce216d7ff60b4e969faee0e578fb/68747470733a2f2f7472617669732d63692e636f6d2f5970726f78696d6974652f706179756d2d6178657074612d626e702e7376673f746f6b656e3d704e4273326f6152706678647968715766323868266272616e63683d6d6173746572)](https://travis-ci.com/Yproximite/payum-axepta-bnp)

Requirements
------------

[](#requirements)

- PHP 7.4+
- [Payum](https://github.com/Payum/Payum)
- Optionally [PayumBundle](https://github.com/Payum/PayumBundle) and Symfony 3 or 4+

Installation
------------

[](#installation)

```
$ composer require yproximite/payum-axepta-bnp
```

Configuration
-------------

[](#configuration)

### With PayumBundle (Symfony)

[](#with-payumbundle-symfony)

First register the gateway factory in your services definition:

```
# config/services.yaml or app/config/services.yml
services:
  yproximite.axepta_gateway_factory:
    class: Payum\Core\Bridge\Symfony\Builder\GatewayFactoryBuilder
    arguments: [ Yproximite\Payum\Axepta\AxeptaGatewayFactory ]
    tags:
      - { name: payum.gateway_factory_builder, factory: axepta }
```

Then configure the gateway:

```
# config/packages/payum.yaml or app/config/config.yml

payum:
  gateways:
    axepta:
      factory: axepta
      merchant_id: 'change it' # required
      hmac: 'change it' # required
      crypt_key: 'change it' # required
```

### With Payum

[](#with-payum)

```
