Download the PHP package watts25/naranja-payment-sdk without Composer

On this page you can find all versions of the php package watts25/naranja-payment-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package naranja-payment-sdk

Ranty Checkout - PHP SDK

Requerimientos

Instalación

Ejemplo de uso

El primer paso es crear un PaymentRequest que contiene toda la información del pago que queremos recibir:

Luego, para recibir las notificaciones, debemos implementar un endpoint que las reciba (que debe ser el mismo que especificamos en $paymentRequest->setCallbackUrl):

Pruebas

Para probar el flujo de checkout, una vez en el webform te vamos a pedir que te loguees. Tenemos dos usuarios de prueba que podes usar para los distintos escenarios:

API

Clase

Métodos

createPaymentRequest

Se utiliza para crear el paymentRequest

getPaymentRequest

getPaymentByExternalId

getPayment

Modelos

Naranja\CheckoutApi\Model\PaymentRequest()

Métodos

setPaymentType( string )

Tipo de pago. Sólo permite "web_checkout".

setAuthorizationMode( string )

Modo de autorización. Sólo permite "SALE".

setExternalPaymentId( string )

Un id externo, para que el vendedor pueda identificar la venta.

setTransactions( [ Naranja\CheckoutApi\Model\Transaction() ] )

Por más que haya una sola transacción debemos pasar un array.

setAdditionalInfo( string ) [optional]

Información adicional.

setSellerData( Naranja\CheckoutApi\Model\SellerData() ) [optional]

Representa los datos del vendedor

setRequestCreationRedirect( Naranja\CheckoutApi\Model\RequestCreationRedirect() )

URLs a las cuales redirigir al usuario cuando termina el proceso del checkout.

setCallbackUrl( string )

URL a la cual enviar notficaciones sobre el estado de la transacción.

Naranja\CheckoutApi\Model\ProductItem()[optional]

Representa un ítem en la compra.

Métodos

setName( string )

Nombre del producto.

setDescription( string )

Descripción del producto.

setQuantity( int )

Cantidad de productos adquiridos.

setUnitPrice( Naranja\CheckoutApi\Model\Amount() )

Precio unitario del producto.

Naranja\CheckoutApi\Model\Amount()

Métodos

setCurrency( string )

Moneda en la cual se hizo la compra. Sólo admite "ARS".

setValue( string )

Valor de la compra.

Naranja\CheckoutApi\Model\Transaction()

Métodos

setAmount( Naranja\CheckoutApi\Model\Amount() )

Monto total de la transacción.

setSoftDescriptor( string )[optional]

Descripción con el cual queda registrado el consumo y como se ve en el resumen de cuenta.

setProducts( [ Naranja\CheckoutApi\Model\ProductItem() ] )

Los productos de la compra. Los mismos son sólo a título informativo para el cliente.

Naranja\CheckoutApi\Model\SellerData()

Métodos

setStoreId( string )

Identificador de la tienda

setSellerId( string )

Identificador del vendedor o comercio

setPosId( string )

Identificador del POS

setSystem( string )

Nombre del sistema del vendedor

setGeocode( string )

Código de geolocalización

setInvoiceData( string )

Datos discrecionales de la factura-ticket

Naranja\CheckoutApi\Model\RequestCreationRedirect()

Métodos

setSuccessUrl( string )

La URL a la cual enviamos al cliente cuando la transacción fue exitosa.

setFailureUrl( string )

La URL a la cual enviamos al cliente cuando la transacción falló.


All versions of naranja-payment-sdk with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
ext-curl Version *
ext-json Version *
ext-mbstring Version *
guzzlehttp/guzzle Version ^6.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package watts25/naranja-payment-sdk contains the following files

Loading the files please wait ....