Download the PHP package jhonatancf/sdkptp without Composer
On this page you can find all versions of the php package jhonatancf/sdkptp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package sdkptp
PlaceToPay SDK SOAP WS - Version 1.0.1
Instalación
Se instala a traves de composer:
composer require jhonatancf/sdkptp
Configuración
- El archivo config_ws.json contiene los parametros de conexión al WebService de PlaceToPay(WSDL, login, transactionalKey)
- El archivo config_bd.php contiene los datos de conexión a la base de datos por medio de Eloquent. Modificar los datos de acceso según la bd de datos que se tenga configurada.
- Crear la tabla transactions con la siguiente estructura:
- CREATE TABLE transactions ( transaction_id integer NOT NULL, session_id VARCHAR(32) NOT NULL, return_code VARCHAR(30) NOT NULL, created_at timestamp NULL DEFAULT CURRENT_TIMESTAMP, updated_at timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (transaction_id) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
Uso
Instancia y métodos disponibles. Para ver el funcionamiento y los valores retornados por las funciones dirijase a la sección de tests.
-
All versions of sdkptp with dependencies
PHP Build Version
Package Version
Requires
illuminate/database Version
*
The package jhonatancf/sdkptp contains the following files
Loading the files please wait ....