Codebase list phpggc / cdf1e5ad-be94-4657-b2f1-4ba7dcbb9d27/main phpggc
cdf1e5ad-be94-4657-b2f1-4ba7dcbb9d27/main

Tree @cdf1e5ad-be94-4657-b2f1-4ba7dcbb9d27/main (Download .tar.gz)

phpggc @cdf1e5ad-be94-4657-b2f1-4ba7dcbb9d27/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);
}