Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrianosferreira/wp-plugin-skeleton
A simple skeleton for building WordPress plugins
https://github.com/adrianosferreira/wp-plugin-skeleton
wordpress wordpress-development wordpress-plugins wp-plugin-skeleton
Last synced: 3 months ago
JSON representation
A simple skeleton for building WordPress plugins
- Host: GitHub
- URL: https://github.com/adrianosferreira/wp-plugin-skeleton
- Owner: adrianosferreira
- License: gpl-3.0
- Created: 2020-06-20T17:04:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T19:38:48.000Z (over 2 years ago)
- Last Synced: 2024-09-14T04:25:30.188Z (4 months ago)
- Topics: wordpress, wordpress-development, wordpress-plugins, wp-plugin-skeleton
- Language: PHP
- Size: 67.4 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# WP Plugin Skeleton
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
```