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