Update 2012-01-06:
- The manifesto itself and the collection is now at MicroPHP.org
- Here’s a Czech translation
- The MicroPHP Fallacy
- O Manifesto Micro Php E A Macro Discussão.
- Meus Dois Centavos Sobre O Microphp Manifesto
- The MicroPHP Manifesto – What People Are Overlooking
Update 2012-01-04:
- I’ve started a collection of lightweight PHP libraries and frameworks on Gimme Bar [json] [rss]. If you have suggestions, let me know!
The standard line about the history of Punk is that it was a reaction to the excesses of modern rock, particularly progressive rock of the time. The reality is undoubtedly more complex, but I suspect there is some truth to that. Rock n roll did seem to be the realm of Golden Gods in the late 60s and 70s, inaccessible to average folk. The contrast between bands like Rush and Black Flag –– both supposedly playing “rock” –– was extreme.
For fun, let’s take a look at Rush drummer Neil Peart’s drum kit:

Now, here’s Black Flag playing in LA in 1979:

You can fit the entirety of Black Flag in the space of Neil Peart’s drum kit. And they would still play awesome shit and rock you the fuck out.
In the past few years, the PHP Zeitgeist seems like it’s been moving in the Neil Peart direction. Lots of work by lots of smart people is going into complex, verbose solutions. Lots of files, lots of nested directories, and lots of rules. I frequently see PHP libraries/components that look like this:
<script src="https://gist.github.com/1555472.js"> [https:]]All that, just to start your application.
It doesn’t mean this approach is bad, per se. But when I see it, I have a visceral negative reaction. My brain screams
FUCK.
THAT.
SHIT.
I can’t do it. I don’t want it. And I don’t think we have to do it this way to do cool things and build awesome stuff.
The approach I’ve been taking lately is to start with as lightweight a foundation as possible, in the form of a “microframework.” A few of these exist for PHP (of course), including Slim, Epiphany, Breeze, Limonade, and others. For additional functionality, I pull in lightweight libraries that help me accomplish only the tasks I need. Clarity and brevity are my top considerations.
My other big consideration is the commitment I make when I use code I didn’t write. Typically I don’t have time to do a full code audit on libraries, so there’s a level of trust that goes with it. And each dependency means more trust. Not just that there aren’t bugs (I expect that if they’re anything like me), but security issues – both whether they exist, and how they will be handled. Will an announcement go out to a mailing list? How long will security fixes be provided that don’t break backwards compatibility? Will I have to upgrade all my dependencies if I upgrade to the next PHP point release? And all of that assumes the author will have the time and motivation to provide prompt fixes. If they don’t, you’ve just added a bunch of technical debt to your codebase.
Finding lightweight libraries that don’t pull in lots of additional code dependencies is much harder than it should be. Mostly I think that&r
Truncated by Planet PHP, read more at the original (another 5395 bytes)