Codebase list phpggc / 48848a0f-1b32-4d93-9dc2-95a078ad14b1/upstream phpggc
48848a0f-1b32-4d93-9dc2-95a078ad14b1/upstream

Tree @48848a0f-1b32-4d93-9dc2-95a078ad14b1/upstream (Download .tar.gz)

phpggc @48848a0f-1b32-4d93-9dc2-95a078ad14b1/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);
}