I'm beginning a website using the 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.
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.