Codebase list phpggc / run/33502f8f-ff5f-4abd-9c6d-ade210bf9181/main phpggc
run/33502f8f-ff5f-4abd-9c6d-ade210bf9181/main

Tree @run/33502f8f-ff5f-4abd-9c6d-ade210bf9181/main (Download .tar.gz)

phpggc @run/33502f8f-ff5f-4abd-9c6d-ade210bf9181/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");
}