Codebase list phpggc / c13b29d9-5618-4297-89c9-99f3ef04a844/main phpggc
c13b29d9-5618-4297-89c9-99f3ef04a844/main

Tree @c13b29d9-5618-4297-89c9-99f3ef04a844/main (Download .tar.gz)

phpggc @c13b29d9-5618-4297-89c9-99f3ef04a844/main

16028c9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
#!/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");
}