Codebase list phpggc / fd09807a-88e8-4f63-ac16-ab5a73bda7d4/main phpggc
fd09807a-88e8-4f63-ac16-ab5a73bda7d4/main

Tree @fd09807a-88e8-4f63-ac16-ab5a73bda7d4/main (Download .tar.gz)

phpggc @fd09807a-88e8-4f63-ac16-ab5a73bda7d4/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);
}