Codebase list phpggc / 0663f6be-29e2-4cca-91d2-5569252f201a/main phpggc
0663f6be-29e2-4cca-91d2-5569252f201a/main

Tree @0663f6be-29e2-4cca-91d2-5569252f201a/main (Download .tar.gz)

phpggc @0663f6be-29e2-4cca-91d2-5569252f201a/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);
}