Hi everyone !
I'm beginning a website using Kohana Framework, and I couldn't find how to include external libraries "the proper way". I want to use the phpFlickr library to allow my website to interact with flickr, and I was wondering if there was a better way to include the files than :
require_once("path/to/phpFlickr.php");
// Fire up the main phpFlickr class
$f = new phpFlickr($key);
It's OK to do it that way I guess, but if I could say to Kohana : "the phpFlickr files are there, go get them on your own when you need it", it would be better.
Anyone can help me with that ?
Thanks.
Regards from France ;)