Codebase list phpggc / 05d9edbb-a48c-455c-9b05-ffc019dad1fa/main phpggc
05d9edbb-a48c-455c-9b05-ffc019dad1fa/main

Tree @05d9edbb-a48c-455c-9b05-ffc019dad1fa/main (Download .tar.gz)

phpggc @05d9edbb-a48c-455c-9b05-ffc019dad1fa/mainraw · history · blame

#!/usr/bin/env php
<?php

error_reporting(E_ALL);

require_once('lib/PHPGGC.php');

$x = new PHPGGC();

try
{
    $x->generate();
}
catch(\PHPGGC\Exception $e)
{
    print("ERROR: " . $e->getMessage() . "\n");
    exit(1);
}