blob: 2085888d5d7a131a0d4f6806bfd5769c6626d0fb (
plain)
1
2
3
4
5
6
7
|
<?php
require_once dirname(__FILE__).'/../vendor/autoload.php';
//pull in API key config
$optionsFile = file_get_contents(dirname(__FILE__).'/example-options.json');
$options = json_decode($optionsFile, true);
|