Codebase list phpggc / 4bdc8140-f52f-4f32-b650-8f720f5a15b4/upstream/0.20221129 phpggc
4bdc8140-f52f-4f32-b650-8f720f5a15b4/upstream/0.20221129

Tree @4bdc8140-f52f-4f32-b650-8f720f5a15b4/upstream/0.20221129 (Download .tar.gz)

phpggc @4bdc8140-f52f-4f32-b650-8f720f5a15b4/upstream/0.20221129raw · 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);
}