Codebase list phpggc / 1b629bdd-61f0-410d-87cb-00f49cf14044/main phpggc
1b629bdd-61f0-410d-87cb-00f49cf14044/main

Tree @1b629bdd-61f0-410d-87cb-00f49cf14044/main (Download .tar.gz)

phpggc @1b629bdd-61f0-410d-87cb-00f49cf14044/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");
}