Codebase list phpggc / a0c7bdda-1ce0-40af-a725-92d5a7fee594/upstream/0.20221129 phpggc
a0c7bdda-1ce0-40af-a725-92d5a7fee594/upstream/0.20221129

Tree @a0c7bdda-1ce0-40af-a725-92d5a7fee594/upstream/0.20221129 (Download .tar.gz)

phpggc @a0c7bdda-1ce0-40af-a725-92d5a7fee594/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);
}