I\'ve followed this article: http://philsturgeon.co.uk/blog/2012/05/composer-with-codeigniter
But I get Fatal error: Class \'Buzz\\Browser\' not found.<
There are two ways you can autoload the class file which is required using composer.
Add below line in index.php in the root directory.
require FCPATH . 'vendor/autoload.php';
Or autoload directly in the controller where you want to use.
defined('BASEPATH') OR exit('No direct script access allowed');
require FCPATH . 'vendor/autoload.php';
class Home extends CI_Controller {...}