Codebase list phpggc / aee7cf7d-11c9-4146-85aa-e8229c06a543/upstream phpggc
aee7cf7d-11c9-4146-85aa-e8229c06a543/upstream

Tree @aee7cf7d-11c9-4146-85aa-e8229c06a543/upstream (Download .tar.gz)

phpggc @aee7cf7d-11c9-4146-85aa-e8229c06a543/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");
}