Codebase list phpggc / 1f5cf450-15fa-42b0-a8c1-7148be7b638b/upstream phpggc
1f5cf450-15fa-42b0-a8c1-7148be7b638b/upstream

Tree @1f5cf450-15fa-42b0-a8c1-7148be7b638b/upstream (Download .tar.gz)

phpggc @1f5cf450-15fa-42b0-a8c1-7148be7b638b/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");
}