Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bigboxwc/wp-plugin
Base WordPress plugin scaffold.
https://github.com/bigboxwc/wp-plugin
wordpress wordpress-plugin
Last synced: about 1 month ago
JSON representation
Base WordPress plugin scaffold.
- Host: GitHub
- URL: https://github.com/bigboxwc/wp-plugin
- Owner: bigboxwc
- License: gpl-3.0
- Created: 2018-07-18T18:18:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:29:02.000Z (about 2 years ago)
- Last Synced: 2024-05-27T19:10:05.728Z (8 months ago)
- Topics: wordpress, wordpress-plugin
- Language: PHP
- Homepage: https://bigboxwc.com/
- Size: 1.71 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 57
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
- _Replace `BigBox\Plugin` with your namespace_
- _Replace `PLUGIN` constant with your constant prefix_
- _Replace `'plugin'` text domain with your text domain_
- _Replace `'plugin_` function prefixes with your function prefix_# Plugin
WordPress plugin base.
## Install
#### Clone Repository
```
$ git clone [email protected]:bigboxwc/wp-plugin wp-plugin && cd wp-plugin
```#### Setup Plugin
```
$ npm run setup-plugin
```## Develop
```
$ npm run dev
```## Lint
#### Javascript
```
$ npm run lint
```#### CSS
```
$ npm run css-lint
```#### PHP
```
$ composer run lint
```## Release
```
$ npm run package-plugin
```