Codebase list phpggc / 5733b04e-14c7-4dbc-bcce-7469db30a936/upstream/0.20210218+git20221214.0.b31b8a4 phpggc
5733b04e-14c7-4dbc-bcce-7469db30a936/upstream/0.20210218+git20221214.0.b31b8a4

Tree @5733b04e-14c7-4dbc-bcce-7469db30a936/upstream/0.20210218+git20221214.0.b31b8a4 (Download .tar.gz)

phpggc @5733b04e-14c7-4dbc-bcce-7469db30a936/upstream/0.20210218+git20221214.0.b31b8a4raw · 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);
}