Codebase list phpggc / upstream/0.20220627 phpggc
upstream/0.20220627

Tree @upstream/0.20220627 (Download .tar.gz)

phpggc @upstream/0.20220627raw · 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);
}