I'm trying to include phpdocx files in my Yii project. On a standalone php script, all I have to do is
require_once 'phpdocx/classes/CreateDocx.inc';
Not sure how to do it with Yii. I put the folder under protected/components/thirdparty/phpdocx. And added the line above (with correct path) in config/main.php, but Yii can't find the rest of the .inc files.
How do I include those?