Codebase list phpggc / ed6f3110-b016-4b3d-aa45-e4889319133b/upstream phpggc
ed6f3110-b016-4b3d-aa45-e4889319133b/upstream

Tree @ed6f3110-b016-4b3d-aa45-e4889319133b/upstream (Download .tar.gz)

phpggc @ed6f3110-b016-4b3d-aa45-e4889319133b/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);
}