Codebase list phpggc / 16afd3a1-bf81-4b7b-b168-0f87eabff139/upstream phpggc
16afd3a1-bf81-4b7b-b168-0f87eabff139/upstream

Tree @16afd3a1-bf81-4b7b-b168-0f87eabff139/upstream (Download .tar.gz)

phpggc @16afd3a1-bf81-4b7b-b168-0f87eabff139/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);
}