Codebase list phpggc / 2d28070e-f3f1-4056-bf9e-3c10be3a851a/upstream/0.20221129 phpggc
2d28070e-f3f1-4056-bf9e-3c10be3a851a/upstream/0.20221129

Tree @2d28070e-f3f1-4056-bf9e-3c10be3a851a/upstream/0.20221129 (Download .tar.gz)

phpggc @2d28070e-f3f1-4056-bf9e-3c10be3a851a/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);
}