Codebase list phpggc / 4b77638e-ec63-48be-b8a9-3c2533246da2/main phpggc
4b77638e-ec63-48be-b8a9-3c2533246da2/main

Tree @4b77638e-ec63-48be-b8a9-3c2533246da2/main (Download .tar.gz)

phpggc @4b77638e-ec63-48be-b8a9-3c2533246da2/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);
}