scbFramework is a set of helper classes and functions to be used in extensions.
Library includes elaborate custom loader to handle case when multiple instances are included. Composer autoload was added in parallel to it on assumption of shared use as dependency:
classmap
autoload typefiles
autoload typeCustom loader is preserved and remains functional for non-Composer use.
Since library is not being semantically versioned from Composer point of view it is available as rolling development branch to be used with *@dev
version constraint.
{
"name" : "scribu/scb-framework",
"description": "A set of useful classes for faster plugin development",
"keywords" : ["wordpress"],
"homepage" : "https://github.com/scribu/wp-scb-framework",
"license" : "GPL-3.0+",
"authors" : [
{
"name" : "Cristi Burcă",
"homepage": "http://scribu.net/"
}
],
"support" : {
"issues": "https://github.com/scribu/wp-scb-framework/issues",
"source": "https://github.com/scribu/wp-scb-framework",
"wiki" : "https://github.com/scribu/wp-scb-framework/wiki"
},
"autoload" : {
"classmap": ["."],
"files" : ["load-composer.php", "Util.php"]
}
}