Codebase list phpggc / c7307cd2-0bb8-4610-81c2-91e81558c7f4/main phpggc
c7307cd2-0bb8-4610-81c2-91e81558c7f4/main

Tree @c7307cd2-0bb8-4610-81c2-91e81558c7f4/main (Download .tar.gz)

phpggc @c7307cd2-0bb8-4610-81c2-91e81558c7f4/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);
}