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
{{ message }}
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
in the composer.json you have classmap: "classes/" which is lowercase but the folder is uppercased "Classes", on a case sensitive filesystem this leads to class not found exceptions.
Greetings
Daniel
The text was updated successfully, but these errors were encountered:
The same problem exists for the folder services. Both folders classes and services should be Classes and Services.
The needs to be fixed in:
composer.json (line 24 and 25)
ext_emconf.php (line 42 and 43)
ext_autoload.php (line 6, 9, 11, 12, 19, 21, 23, 24, 45, 56, 59)
ext_conf_include.php (line 42 - 52)
in ext_autoload.php there are also some $extensionPath . 'tests/ which should be $extensionPath . 'Tests/
Cheers, Tobias
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi
in the composer.json you have classmap: "classes/" which is lowercase but the folder is uppercased "Classes", on a case sensitive filesystem this leads to class not found exceptions.
Greetings
Daniel
The text was updated successfully, but these errors were encountered: