2017 © Pedro Peláez
 

library easy-pnr-api-php

PHP API Client for EasyPNR Decoder (https://www.easypnr.com)

image

m1x0n/easy-pnr-api-php

PHP API Client for EasyPNR Decoder (https://www.easypnr.com)

  • Sunday, April 9, 2017
  • by m1x0n
  • Repository
  • 1 Watchers
  • 0 Stars
  • 806 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

easy-pnr-api-php Build Status

PHP API Client for EasyPNR Decoder: https://www.easypnr.com, (*1)

Installation

composer require m1x0n/easy-pnr-api-php

Usage

<?php

// Usage example

require_once __DIR__ . '/../vendor/autoload.php';

// Please make sure that you obtained correct API key
$apiKey = 'YOUR API KEY HERE';

// Prepare your PNR data. See encoded.txt for more information
$pnrSample = file_get_contents(__DIR__ . '/../tests/fixtures/encoded.txt');

// You can create client in two ways
// 1. Via constructor:
$client = new EasyPNR\Client($apiKey);

// 2. Via factory method:
$client = EasyPNR\Client::withApiKey($apiKey);

// This should respond with pong and timestamp string
$pingResponse = $client->ping();

// This should respond with decoded array structure
// See decoded.json fixture for more information
$decoded = $client->decode($pnrSample);

Documentation

You can found latest documentation here: http://docs.easypnr.com/api/v3/, (*2)

More about Passengers Name Record (PNR) on wiki, (*3)

The Versions

09/04 2017

dev-master

9999999-dev

PHP API Client for EasyPNR Decoder (https://www.easypnr.com)

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar m1x0n

09/04 2017

1.0.1

1.0.1.0

PHP API Client for EasyPNR Decoder (https://www.easypnr.com)

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar m1x0n

29/03 2017

1.0

1.0.0.0

PHP API Client for EasyPNR Decoder (https://www.easypnr.com)

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar m1x0n