Codebase list phpggc / 796eebd1-260f-4b44-b62a-b2cddcdc8f9a/upstream phpggc
796eebd1-260f-4b44-b62a-b2cddcdc8f9a/upstream

Tree @796eebd1-260f-4b44-b62a-b2cddcdc8f9a/upstream (Download .tar.gz)

phpggc @796eebd1-260f-4b44-b62a-b2cddcdc8f9a/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);
}