Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Latest commit

 

History

History
38 lines (25 loc) · 665 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 665 Bytes

Pebblecube PHP SDK

Pebblecube is videogame development library, includes: analytics, achievements, scores and much more.

This repository contains the open source PHP SDK for the Pebblecube APIs.

Usage

<?php

require_once('../Pebblecube.php');

$pb = new Pebblecube(array(
	'key'  => 'your key',
	'secret' => 'your secret'
));

try {
	$pb->session->start();
} catch (PebblecubeException $e) {
	error_log($e);
}

?>

Feedback

Use the GitHub issues tracker for feedback. Send bugs or other issues here.

Tests

Coming soon