Maybe I don't understand fully. I read that PSR is PHP Standard Recommendation, but there are several version of PSR, For Example autoloader use PSR-4 instead Basic Coding Standard use PSR-1
I have to follow a specific PSR version Or I have to merge the good parts of them ?
Symfony follows the standards defined in the PSR-0, PSR-1, PSR-2 and PSR-4 documents,Then each framework uses different PSR ?
You can see the PSRs as one huge coding standard. They depend on each other but every PSR stands alone for itself. PSR-2 describes Coding Style Guide while PSR-4 describes the standard for Autoloading.
Here is a website about the PHP Standards Recommendations. You can find there a full list of all existing PSR.