TYPO3-Caretaker / caretaker_instance

TYPO3 extension caretaker_instance
GNU General Public License v2.0
14 stars 23 forks source link

Composer namespace case insensitive issue #80

Open featdd opened 4 years ago

featdd commented 4 years ago

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

tobiasschaeferptb commented 4 years ago

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