2017 © Pedro Peláez
 

library judopay-sdk

SDK for the Judopay API

image

judopay/judopay-sdk

SDK for the Judopay API

  • Friday, July 20, 2018
  • by JudoPay
  • Repository
  • 16 Watchers
  • 1 Stars
  • 2,011 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 7 Forks
  • 0 Open issues
  • 19 Versions
  • 8 % Grown

The README.md

Judopay PHP SDK Build Status

The JudoPay SDK provides you with the ability to integrate card payments into your PHP project. Judo's SDK enables a faster, simpler, and more secure payment experience within your app., (*1)

*****Due to industry-wide security updates, versions below 2.0 of this SDK will no longer be supported after 1st Oct 2016. For more information regarding these updates, please read our blog here.*****

Requirements

In order for the Judo PHP library to work correctly with your development setup, please ensure the following requirements are met:, (*2)

Getting started

1. Integration

Installation of the SDK is implemented via the Composer package manager. Add the judopay package to your composer.json file:, (*3)

    "require": {
        "judopay/judopay-sdk": "5.0.0"
    }

And then execute:, (*4)

    $ composer install

Make sure you require the 'vendor/autoload.php' file, so that the Judopay SDK classes are available to your application. For more information on getting started with Composer, see Composer intro., (*5)

2. Setup

To start using the SDK, create a new Judopay object with your API credentials:, (*6)

    $judopay = new Judopay(
        array(
            'apiToken' => 'your-token',
            'apiSecret' => 'your-secret',
            'judoId' => 'your-judo-id'
        )
    );
3. Make a payment

To make a new payment with full card details:, (*7)

    $payment = $judopay->getModel('Payment');
    $payment->setAttributeValues(
        array(
            'judoId' => 'your_judo_id',
            'yourConsumerReference' => '12345',
            'yourPaymentReference' => '12345',
            'amount' => 1.01,
            'currency' => 'GBP',
            'cardNumber' => '4976000000003436',
            'expiryDate' => '12/25',
            'cv2' => 452
        )
    );

Note: Please make sure that you are using a unique Consumer Reference for each different consumer, and a unique Payment Reference for each transaction., (*8)

Card address details can optionally be included for use in AVS checks as follows, (see full list of parameters here), (*9)

    $payment = $judopay->getModel('Payment');
    $payment->setAttributeValues(
        array(
            'judoId' => 'your_judo_id',
            'yourConsumerReference' => '12345',
            'yourPaymentReference' => '12345',
            'amount' => 1.01,
            'currency' => 'GBP',
            'cardNumber' => '4976000000003436',
            'expiryDate' => '12/25',
            'cv2' => 452,
            'cardAddress' => array('address1' => '1 Market Street', 'postCode' => 'E20 6PQ', 'countryCode' => 826)
        )
    );

You can check on the required fields and the format of each field in the Judopay REST API reference. To send the request to the API, call:, (*10)

    $response = $payment->create();
4. Check the payment result

If the payment is successful, you'll receive a response array like this (see full response here):, (*11)

    Array
    (
        [receiptId] => 520882
        [type] => Payment
        [createdAt] => 2014-08-18T16:28:39.6164+01:00
        [result] => Success
        ...
        [amount] => 10.00
        ... 
        [yourPaymentReference] => 12345
    )

Also important to handle different exceptions in your code. See more details in our error handling section., (*12)

    try {
        $response = $payment->create();
        if ($response['result'] === 'Success') {
            echo 'Payment successful';
        } else {
            echo 'There were some problems while processing your payment';
        }
    } catch (JudopayExceptionValidationError $e) {
        echo $e->getSummary();
    } catch (JudopayExceptionApiException $e) {
        echo $e->getSummary();
    } catch (Exception $e) {
        echo $e->getMessage();
    }

Next steps

The Judo PHP SDK supports a range of customization options. For more information on using Judo see our documentation., (*13)

License

See the LICENSE file for license rights and limitations (MIT)., (*14)

The Versions