PHP Classes

File: WPG

Recommend this page to a friend!
  Classes of Cleber Mendes   PHP WordPress Plugin Generator   WPG   Download  
File: WPG
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP WordPress Plugin Generator
Generate a WordPress plugin from developer answers
Author: By
Last change:
Date: 5 years ago
Size: 260 bytes
 

Contents

Class file image Download
#!/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();