Fuel's coding standards mean that the autoloader looks for capitilised class and namespaces in lowercase files and directories. Which makes sense, I understand why you have decided to go with the "all lower case file structure" convention.
However it means that the autoloader can't be used to load 3rd party libraries that follow the convention of having capitilised directories and files. Not on a case sensitive file system anyway.
Is there are way around this that I have missed?
Do I need to extend and replace the core autoloader to do this?