Codebase list phpggc / 7973004c-3609-4215-8ba8-468a1ce76a07/upstream phpggc
7973004c-3609-4215-8ba8-468a1ce76a07/upstream

Tree @7973004c-3609-4215-8ba8-468a1ce76a07/upstream (Download .tar.gz)

phpggc @7973004c-3609-4215-8ba8-468a1ce76a07/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);
}