Codebase list phpggc / f38bc08d-1a35-4ca7-9bbc-3d29ee20e249/upstream phpggc
f38bc08d-1a35-4ca7-9bbc-3d29ee20e249/upstream

Tree @f38bc08d-1a35-4ca7-9bbc-3d29ee20e249/upstream (Download .tar.gz)

phpggc @f38bc08d-1a35-4ca7-9bbc-3d29ee20e249/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);
}