Download the PHP package univicosa/laravel-payment-client without Composer
On this page you can find all versions of the php package univicosa/laravel-payment-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-payment-client
Univiçosa Laravel Payment Client
univicosa/laravel-payment-client
is a Laravel package which created to integrate the Payment server to ours Laravel project's that requires payments requests.
Install
Installation using composer:
For Laravel versions < 5.5 add the service provider in config/app.php
:
Define the system in your .env
setting the enviroiment variables:
SYSTEM_ID
generated by Admin server for your system
SYSTEM_PASSWORD
generated by Admin server for your system
PAYMENT_SERVER
defined according to enviroiment you are using
To personalize the config, publish the package's configuration file by running:
The file config/openid.php
will be generated.
PS: Your system need to be authorized by the Payment Administration Service and uses the OpenId Client to authenticate the users that request the payments.
Creating a new account
For do payments requests the client need to use a valid Beneficiary. For create one on demand just implement the Payment::createBeneficiary()
method following the rules:
Request body
Content explanation
Payment requests
To request a payment to the server via API client you should instantiate one of the avaliable types and pass to the driver via \Payment::send()
Facade. The driver will identify the instance of your payment and send to the appropriated endpiont.
The request accepts N items by request, turning possible a client use a cart of items in one unique payment instance.
The Payment request should follow the rules for all Payment instances. All types available will extends:
Request body
Content explanation
Payment types availiable
All the following types will extends the default rules of Payment class.
Boleto
All current payments via boleto accepts only the SICOOB operator and the return methods are operated manually. The notification of payment are maded after that and can wait 72 hour for the bank return.
Request body
Content explanation
PS: if the deadline recognizes the final date as a not util day, the end date will be the next monday.
Credit card
All current payments via credit card accpts the brands Visa, Mastercard, American Express, ELO, Diners and Amex.
Request body
Free
The free payment is a instance that receives isents requests generated with 100% discount (vouchers included) and just extends the default rules and need to receive the 'value' key as a zero.
Content explanation
Presential
The presential payment are maided by authorized users under a admin panel and accepts payment in cash (type => 'money') or via card machine (type => 'credit_card' and type => 'debit_card') and excluded the following parent rules: 'payer.address', 'payer.district', 'payer.cep', 'payer.state' and 'payer.city'.
Request body
Payment status
Each payment type has a especific line of status updates, but their all will respects the following rules:
Payments payed or scheduled receive a 'payed' status. Payments canceled, refunded or closed receive a 'canceled' status. Payments aborted or denied receive a 'denied' status. All the other possibles status are translated to a 'waiting' status.
The status 'payed', 'canceled' and 'denied' are endpoints and not receives new notifications after updated.
Payment push notification
The driver implements a route /api/payment
that receives the push notifications with the change of payments status from the Payment server. The notification contains the payment_id and the updated status.
The method and controller that will treat the return need to be defined in the published config/payment.php
file.
Payment refund
It's possible to refund a payment using the Facade \Payment::cancel()
. The method requires the payment ID as a parameter and will call the cancel process in the Payment server.
Payments maid by credit card will generate a refund directly in the Invoice of the client.
Payments made by boleto and paid will generate a refund in name of the payer and the process need to be treated internally, by the financial operator, according of the internal rules of IES.
Facades
All versions of laravel-payment-client with dependencies
univicosa/laravel-openid-client Version >=0.7.3
guzzlehttp/guzzle Version ^6.3
laravel/framework Version >=5.4
barryvdh/laravel-cors Version ^0.11.0
lcobucci/jwt Version ^3.2