Codebase list phpggc / e5993871-6fbf-4ba8-9d0b-c1ff1f7d8688/upstream phpggc
e5993871-6fbf-4ba8-9d0b-c1ff1f7d8688/upstream

Tree @e5993871-6fbf-4ba8-9d0b-c1ff1f7d8688/upstream (Download .tar.gz)

phpggc @e5993871-6fbf-4ba8-9d0b-c1ff1f7d8688/upstreamraw · 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);
}