https://github.com/njengah/composered
Composer based framework to help build WordPress plugins faster and easily
https://github.com/njengah/composered
Last synced: about 2 months ago
JSON representation
Composer based framework to help build WordPress plugins faster and easily
- Host: GitHub
- URL: https://github.com/njengah/composered
- Owner: Njengah
- Created: 2023-12-17T08:46:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-17T14:59:35.000Z (over 1 year ago)
- Last Synced: 2025-02-05T21:05:24.036Z (3 months ago)
- Language: PHP
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Composered WordPress Plugin Boilerplate
Welcome to the Composered WordPress Plugin Boilerplate! Composer based framework to help build WordPress plugins faster and easily. This boilerplate provides a foundation for creating WordPress plugins with Composer support.
## Quick Start
1. **Clone the Repository:**
```bash
git clone https://github.com/your-username/composered.git```
2. **Install Dependencies:**
```
cd composered
composer install
Activate the Plugin:
```Move the composered directory to wp-content/plugins/.
3. **Activate the plugin in the WordPress admin**
- Customizing the Plugin
- Modify Core Functionality:4. **Customize inc/ComposeredPlugin.php for your specific needs**
Extend Admin and Public Functionality:- Extend inc/admin/Admin.php for admin-related features.
- Extend inc/public/PublicClass.php for public-facing features.4. **Update Autoloading:**
```
composer dump-autoload
```5. **Documentation**
For detailed instructions and customization options, check the documentation.6. **Contributing**
Feel free to contribute by forking the repository and submitting pull requests.7. **License**
This project is licensed under the MIT License.