clubfixinsurtech / valorempay
There is no license information available for the latest version (1.0.2) of this package.
Integração com o Gateway de Pagamento Valorem Pay
1.0.2
2024-04-19 19:33 UTC
Requires
- php: ^8.1
- saloonphp/saloon: ^3.0
Requires (Dev)
- phpunit/phpunit: ^10.4
- symfony/var-dumper: ^6.3
This package is not auto-updated.
Last update: 2024-11-15 22:41:46 UTC
README
Integration with the ValoremPay payment gateway.
Integração com o Gateway de Pagamento Valorem Pay.
Highlights
- Simple installation (Instalação simples)
- Composer ready and PSR-2 compliant (Pronto para o composer e compatível com PSR-2)
Available services
- Criação de transação
- Efetivação de Pagamento
- Confirmação de Pagamento
- Criação de Cancelamento
- Efetivação do Cancelamento
- Armazenamento do Cartão de Crédito
- Envio do Cartão a ser Armazenado
- Consulta da Transação
Installation
Valorem Pay is available via Composer:
composer require clubfixinsurtech/valorempay
Documentation
For more details on how to use it, see the "examples" folder in the component's directory. It contains an example of how to use the class. It works as follows:
Para obter mais detalhes sobre como utilizar, consulte a pasta "examples" no diretório do componente. Nela, haverá um exemplo de utilização da classe. O funcionamento é o seguinte:
Basic Usage:
<?php $clientId = ''; $clientSecret = ''; $isSandbox = true; $connector = new \ValoremPay\ValoremPayConnector(clientId: $clientId, clientSecret: $clientSecret, isSandbox: $isSandbox); // Create transaction $transaction = (new \ValoremPay\Strategies\TransactionCreateStrategy( installments: 1, installment_type: \ValoremPay\Enums\InstallmentType::STORE_WITHOUT_INTEREST, amount: 1000, ))->setAdditionalData( (new \ValoremPay\Entities\AdditionalData( status_notification_url: 'example.com', )), ); $request = $connector->valoremPay()->transactionCreate($transaction); $response = $request->object(); dump($request, $response);
Credits
- Clubfix (Team)
License
The MIT License (MIT). Please see License File for more information.