Same here; unless there is a good reason to create a class (i.e. a unified API like LFSWPPF)
To keep docs organised, I'd suggest only keeping the current version info in the first post, and attaching older version docs as text documents.
That way new developers coming to lfs will be using the latest version, which is usually what you'd want.
Programatically, I'd suggest a directory structure similar to
*action*/*version*.php
Then you simply include the appropriate file after parsing action and version. (I'd recommend a whitelist of values for action, and a (float) force type for version to ensure system security)
You may want to keep an include that defines the versions that exist for each action, so that you don't have to keep polling the file system to make sure the files exist too.
If the version is not specified, fall back to version 1.0... if an incorrect version is specified, fall back to current version.
The idea being that you want maximum backward compatibility, but encouraging developers to use the latest version.
All of this could be totally impractical depending on how you currently have the stat generation structured, but this is how I would do it.
