Codebase list phpggc / 5a6b6c02-5f38-45d6-8223-9309893a6295/main phpggc
5a6b6c02-5f38-45d6-8223-9309893a6295/main

Tree @5a6b6c02-5f38-45d6-8223-9309893a6295/main (Download .tar.gz)

phpggc @5a6b6c02-5f38-45d6-8223-9309893a6295/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");
}