Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.4 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.4 KB

Pixel Azul SDK for PHP

@Pixel Azul on Twitter @Pixel Azul on Facebook

Total Downloads Build Status Coverage Status Apache 2 License ![Gitter](https://badges.gitter.im/Join Chat.svg)

The Pizel Azul SDK for PHP enables PHP developers to use Pixel Azul Services in their PHP code.

Quick Example

List Courses

<?php
require 'vendor/autoload.php';

use PixelAzul\Client;

// Instantiate an Pixel Azul client
$client = Client::factory('your token', [
    'cache' => 'memcached'
]);

// Query all the courses
$courses = $client->listCourses();

print_r($courses);