Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.18 KB

File metadata and controls

48 lines (32 loc) · 1.18 KB

Installation

Table of contents

Requirements

  • PHP >= 8.1, < 8.6
  • Symfony ^6.0 || ^7.0 || ^8.0
  • Composer 2

The bundle pulls in digitick/sepa-xml and brick/math as dependencies.

Install via Composer

composer require nowo-tech/sepa-payment-bundle

Enable the bundle

Register the bundle in config/bundles.php:

<?php

return [
    // ...
    Nowo\SepaPaymentBundle\NowoSepaPaymentBundle::class => ['all' => true],
];

If you use Symfony Flex, the bundle is registered automatically when you require it.

Optional configuration

The bundle works with sensible defaults. To customize behaviour, add or edit config/packages/nowo_sepa_payment.yaml. See Configuration for all options.

Next steps

  • Configuration — configuration options and defaults
  • Usage — generating SEPA XML, validation, and examples
  • Commands — console commands (IBAN validation, CCC conversion, etc.)