Codebase list phpggc / run/65e1b5c6-5cf0-4bb6-b19e-0330f6c03e51/main phpggc
run/65e1b5c6-5cf0-4bb6-b19e-0330f6c03e51/main

Tree @run/65e1b5c6-5cf0-4bb6-b19e-0330f6c03e51/main (Download .tar.gz)

phpggc @run/65e1b5c6-5cf0-4bb6-b19e-0330f6c03e51/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");
}