Codebase list phpggc / 1d026b14-87e1-4330-8318-c97a93e54378/main phpggc
1d026b14-87e1-4330-8318-c97a93e54378/main

Tree @1d026b14-87e1-4330-8318-c97a93e54378/main (Download .tar.gz)

phpggc @1d026b14-87e1-4330-8318-c97a93e54378/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);
}