Codebase list phpggc / run/a0c45150-ee46-4d00-8416-0c7c72366661/main phpggc
run/a0c45150-ee46-4d00-8416-0c7c72366661/main

Tree @run/a0c45150-ee46-4d00-8416-0c7c72366661/main (Download .tar.gz)

phpggc @run/a0c45150-ee46-4d00-8416-0c7c72366661/mainraw · 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);
}