#!/usr/bin/env php <?php require_once __DIR__ . '/lib/vendor/autoload.php'; require_once __DIR__ . '/WordpressPluginGenerator.php'; use Symfony\Component\Console\Application; $app = new Application(); $app->add(new WordpressPluginGenerator()); $app->run();
info at phpclasses dot org