Codebase list phpggc / e3cb5b42-5b41-430d-8acc-32699f821d2e/upstream phpggc
e3cb5b42-5b41-430d-8acc-32699f821d2e/upstream

Tree @e3cb5b42-5b41-430d-8acc-32699f821d2e/upstream (Download .tar.gz)

phpggc @e3cb5b42-5b41-430d-8acc-32699f821d2e/upstreamraw · 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);
}