Codebase list phpggc / 6dd786d1-1d15-44a5-9b74-e1d93276457b/upstream phpggc
6dd786d1-1d15-44a5-9b74-e1d93276457b/upstream

Tree @6dd786d1-1d15-44a5-9b74-e1d93276457b/upstream (Download .tar.gz)

phpggc @6dd786d1-1d15-44a5-9b74-e1d93276457b/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);
}