Build more with WordPress, faster, using this Plugin framework, based on Laravel.

Installs: 29

Dependents: 0

Suggesters: 0

Security: 0

Stars: 28

Watchers: 8

Forks: 0

Open Issues: 1

Type:wordpress-plugin

1.4.3 2017-03-31 21:20 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:37:04 UTC


README

This is the way Web Artisans write software for WordPress: with elegance, simplicity, and readability.

How? By writing WordPress plugins with Laravel.

These plugins work just like normal WordPress plugins, except that they're each also Laravel Service Containers.

This means that in addition to behaving like WordPress plugins, they also behave much like Laravel apps do, and they inherit much of their structure from Laravel's design, which is object-oriented, fluent, and effective.

Using this framework brings to your plugin projects the power of both the Laravel framework and its community—we think you're going to love what you discover there.

We want to be able to build complex, custom applications on top of WordPress, and we think this is the best way forward.

Features

  • Use Laravel to build WordPress plugins
  • Better organization for plugin files and folders
  • Fluent syntax for defining REST API routes and rewrite rules
  • Create custom post types, comment types, and taxonomies with inheritance
  • Make better use of third-party libraries via Composer
  • Unit testing with PHPUnit and WP-CLI
  • Do more with WordPress, faster

See a complete working example plugin in the auth-plugin-wordpress repo.

Before You Get Started

We've written a primer on Composer, Studio, and Bedrock. You can read it here, along with all of the documentation on how to make the most of Bamboo.

You don't have to read it to be able to jump in, but having a better understanding of these tools can't hurt.

Starting a New Plugin Project

  1. Install Composer.

  2. Install Studio. Studio is a utility that allows you to load Composer dependencies from your local filesystem, which in turn allows you to develop your plugins in context (installed and activated in WordPress):

composer global require franzl/studio your-plugin-name
  1. Use Composer to create a new Plugin project with Bamboo:
composer create-project withfatpanda/bamboo
  1. Modify your copy of composer.json to make your plugin your own (change these settings):
{
  "name": "your-namespace/your-plugin-name",
  "description": "A killer description for your Plugin"
}
  1. Switch to your Bedrock-based WordPress installation, and use Studio to make Composer aware of your plugin:
studio load /path/to/your/plugin
  1. Run Composer to install your plugin into Bedrock as a dependency:
composer require your-namespace/your-plugin:"~1.0" 
  1. Activate your plugin (especially easy if you're using WP-CLI):
wp plugin activate your-plugin-name

Folder Structure and Files

How Do I Learn More?

Read the documentation.

Before You Distribute Your Plugin

Before you start distributing your plugin, you must make it your own by changing the default namespace and updating your Plugin's metadata.

  1. Open your copy of src/plugin.php and establish a PHP namespace for your plugin:
namespace ChangeThisNamespace; // change this...

class Plugin // ...don't change this.

extends FatPanda\Illuminate\WordPress\Plugin { }
  1. Open your copy of bootstrap.php and update your Plugin's metadata:
/*
Plugin Name:    @@PLUGIN_NAME@@
Plugin URI:     @@PLUGIN_URI@@
Description:    @@PLUGIN_DESCRIPTION@@
Version:        @@PLUGIN_VERSION@@
Author:         @@PLUGIN_AUTHOR@@ 
Author URI:     @@PLUGIN_AUTHOR_URI@@
License:        @@PLUGIN_LICENSE@@
License URI:    @@PLUGIN_LICENSE_URI@@
Text Domain:    @@PLUGIN_TEXT_DOMAIN@@
Domain Path:    /resources/lang
*/
  1. Tell Composer to update your WordPress' autoloader—from the root of your WordPress installation:
composer dumpautoload
wp plugin activate your-plugin-name

Distributing Your Plugin

Coming soon.

About This Project

To learn more about the thinking behind this project, you can read this blog post.

Special gratitude goes out to the Laravel and Bedrock projects, without which I never would have had the foundation to make my dreams-in-code a reality.

And of course, I can't forget to say thank you to the folks behind WordPress.

You are all beautiful, and I ❤️ you.

About Fat Panda

Fat Panda is a software product consultancy located in Winchester, VA. We specialize in Laravel, WordPress, and Ionic. No matter where you are in the development of your product, we'll meet you there and work with you to propel you forward.

Contributing

If you run into a problem using this framework, please open an issue.

If you want to help make this framework amazing, check out the help wanted list.

If you'd like to support this and the other open source projects Fat Panda is building, please join our community of supporters on Patreon.