I'm starting a PHP Framework, named after myself. I need some ideas of what all to put on it.
At current, it's minimal, and I'm just setting up the foundation of the framework class itself (not its extensions), but works like this:
include('framework.php');
$fw->load('colors');
$hsl = $fw->colors->rgb2hsl(255, 128, 64); // converts red/green/blue to hue/saturation/lightness
$hsl[2] /= 2; // 0 = hue, 1 = saturation, 2 = lightness; makes the color twice as dark
print_r(hsl2rgb($hsl)); // outputs the darkened RGB value
So, it's mostly going to be:
$fw->load('some_name');
$fw->some_name->functions_of_that_extension();
What extensions should I offer?
As is, I got colors (albeit limited in function ATM; only added the above functions and complementary color calculator and split complementary color calculator), and that's it, since I just started yesterday. Thinking about adding MySQL and a Twitter API, but short on ideas after that.