Codebase list phpggc / 45f6eae6-24ee-4f15-af54-516f378c2c99/upstream/0.20221214 phpggc
45f6eae6-24ee-4f15-af54-516f378c2c99/upstream/0.20221214

Tree @45f6eae6-24ee-4f15-af54-516f378c2c99/upstream/0.20221214 (Download .tar.gz)

phpggc @45f6eae6-24ee-4f15-af54-516f378c2c99/upstream/0.20221214raw · 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);
}