Download the PHP package graft/framework-core without Composer
On this page you can find all versions of the php package graft/framework-core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download graft/framework-core
More information about graft/framework-core
Files in graft/framework-core
Package framework-core
Short Description Framework Core for WordPress Plugin Development.
License MIT
Informations about the package framework-core
Graft Framework
Graft is an little Framework for WordPress Plugins development. It give you clean code architecture for OOP and MVC pattern in your Plugin.
Why Graft ?
For OOP
I am an developer who love OOP, so when i began WordPress Development i was frustrated that some Plugins don't use OOP.
Of course, I understand that some little Plugins don't have to use OOP, so this Framework is destinated for big Plugins with complex features.
Make more Developer Friendly Plugins
During my experience of WordPress Developer, when i was using some Plugin i often asked sames questions :
- Which Hooks uses this Plugin ?
- Is this Plugin give some availables Filters ?
- Is it possible to override this Plugin's Templates ?
Main Graft Features
OOP
In an WordPress Plugin you do not have to make OOP Code (you can use only functions) But with Graft, all things is only Object for better code quality.
MVC Pattern and Template Overriding from Theme
Graft use the Twig Template Engine to allow you to doing MVC Pattern in your Plugin. And Graft allow developers to override all Plugin's Template from their Theme (if you give permission)
Annotations
In Graft, due to the OOP, all basics WordPress functions like add_action('wp_head')
or add_filter()
are Annotations like @Action(name="wp_head")
, so you don't have to specify any callback, it use the specified Method.
Container
All Plugins made with Graft have an Dependency Injection Container (PHP-DI Container) for using autowiring with your Classes or with Graft Injectable Components.
And the container have the list of all WordPress Components used by the Plugin (Action, Filter, Admin Page ...)
Example
This is code example with Graft Framework
All versions of framework-core with dependencies
symfony/config Version ^4.2
symfony/yaml Version ^4.2
doctrine/annotations Version ^1.6
twig/twig Version ^2.7
graft/wp-container Version ^0.0.6
twig/extensions Version ^1.5
gears/class-finder Version ^1.0