I'm using CakePHP 2.7 and want to use a Vendor class by stating
App::uses('TCPDF', 'tecnick.com/tcpdf');
Cake complains because it is trying to load a file from the tecnick plugin.
I actually am aiming for a vendor class in /vendor/tecnick.com/tcpdf
.
The confusion is obviously caused by the dot
in the vendor filepath.
How do I escape the dot in App::uses()
?