You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: