Thanks. In their case it causes a fatal error because the PSR0 loader uses "require".
But in our case, we use include_once.
I found out this issue when testing a bit : it is either a php bug with include_once and case sensitivity or it is the default behaviour, but it should be specified in the manual.
The manual says "With PHP 4, _once functionality differs with case-insensitive operating systems (like Windows)"
"This behaviour changed in PHP 5, so for example with Windows the path is normalized first so that C:\PROGRA~1\A.php is realized the same as C:\Program Files\a.php and the file is included just once."
which is right only if you include the lower case first...but if you include the camel case first it is not included once.
Regards,