Codebase list phpggc / 9fb92075-39c4-47d7-8003-d611806d626e/upstream/0.20210218+git20221129.0.8229f03 phpggc
9fb92075-39c4-47d7-8003-d611806d626e/upstream/0.20210218+git20221129.0.8229f03

Tree @9fb92075-39c4-47d7-8003-d611806d626e/upstream/0.20210218+git20221129.0.8229f03 (Download .tar.gz)

phpggc @9fb92075-39c4-47d7-8003-d611806d626e/upstream/0.20210218+git20221129.0.8229f03raw · 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);
}