Codebase list phpggc / 6ea3bce0-dcaf-4d15-b268-f1208cfd0aff/main phpggc
6ea3bce0-dcaf-4d15-b268-f1208cfd0aff/main

Tree @6ea3bce0-dcaf-4d15-b268-f1208cfd0aff/main (Download .tar.gz)

phpggc @6ea3bce0-dcaf-4d15-b268-f1208cfd0aff/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);
}