Skip to content

AndrewDavid/duffel-api-php

 
 

Repository files navigation

duffel/api

A PHP library for the Duffel API.

Contents

Requirements

Installation

To get started, simply require this library using Composer. You will also need to install packages which provide psr/http-client-implementation and psr/http-factory-implementation.

An installation could look like the following command.

$ composer require "duffel/api:dev-main" "guzzlehttp/guzzle:^7.4" "http-interop/http-factory-guzzle:^1.2

Usage

A simple example of using this library (after successfully installing it) follows.

use Duffel\Client;

$client = new Duffel\Client();
$client->setAccessToken(getenv('DUFFEL_ACCESS_TOKEN'));

$client->airports->list();

See the examples/ directory for additional working examples.

License

Duffel's PHP API Client library is licensed under the MIT license.

About

PHP library for the Duffel API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%