Codebase list phpggc / 9a3678d8-c6cc-4fe8-9ef6-214ffdc77f27/main phpggc
9a3678d8-c6cc-4fe8-9ef6-214ffdc77f27/main

Tree @9a3678d8-c6cc-4fe8-9ef6-214ffdc77f27/main (Download .tar.gz)

phpggc @9a3678d8-c6cc-4fe8-9ef6-214ffdc77f27/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");
    exit(1);
}