WP Manifestindependent plugin directory
manifest / developer / composered

Composered

Composer based framework to help build WordPress plugins faster and easily

by Joe Njenga · github.com/njengah/composered

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/njengah/composered/archive/refs/heads/main.zip

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:

    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/.

  1. Activate the plugin in the WordPress admin
  • Customizing the Plugin
  • Modify Core Functionality:
  1. 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.
  1. Update Autoloading:
composer dump-autoload
  1. Documentation For detailed instructions and customization options, check the documentation.

  2. Contributing Feel free to contribute by forking the repository and submitting pull requests.

  3. License This project is licensed under the MIT License.