Codebase list phpggc / 03a27ad6-3af3-4085-bae2-4ef4656a28a7/main phpggc
03a27ad6-3af3-4085-bae2-4ef4656a28a7/main

Tree @03a27ad6-3af3-4085-bae2-4ef4656a28a7/main (Download .tar.gz)

phpggc @03a27ad6-3af3-4085-bae2-4ef4656a28a7/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);
}