adrianoferreira/wp-plugin-skeleton

There is no license information available for the latest version (dev-master) of this package.

A simple skeleton for building WordPress plugins

Maintainers

Package info

github.com/adrianosferreira/wp-plugin-skeleton

pkg:composer/adrianoferreira/wp-plugin-skeleton

Statistics

Installs: 74

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 2

dev-master 2020-07-03 14:33 UTC

This package is auto-updated.

Last update: 2026-03-01 00:31:53 UTC


README

That's just another skeleton for quickly prototyping of WordPress plugins.

It comes out of the box with:

  • PHPStan
  • PHP_CodeSniffer
  • PHPUnit
  • Travis Yaml file
  • Twig
  • Make commands

Installation

It's recommended that you use Composer to install this library.

Inside of wp-content/plugins run the command:

$ composer create-project adrianoferreira/wp-plugin-skeleton:dev-master

Make commands

Make a production build of the plugin and place it inside of the ./build folder:

$ make build

Run unit tests, style check and static files check:

$ make test

Development build:

$ make dev