Composer Warning: Class TalentLMS_Siteinfo located in .../vendor/dragonflyrg/talentlms/src\TalentLMS\SiteInfo.php does not comply with psr-0 autoloading standard. Skipping.
Granted, PSR-0 is deprecated, and PSR-4 is what should be used, but PSR-0 is the specific error issued by composer when requiring this package. I suspect that the class name is the culprit here.
class Siteinfo
should be:
class SiteInfo
The class simply needs to be properly Pascal Cased to be compliant.
Composer Warning: Class TalentLMS_Siteinfo located in .../vendor/dragonflyrg/talentlms/src\TalentLMS\SiteInfo.php does not comply with psr-0 autoloading standard. Skipping.
Granted, PSR-0 is deprecated, and PSR-4 is what should be used, but PSR-0 is the specific error issued by composer when requiring this package. I suspect that the class name is the culprit here.
class Siteinfo
should be:
class SiteInfo
The class simply needs to be properly Pascal Cased to be compliant.