Version bomo/ical-bundle : v2.0.1
the method setOrganizer() currently only supports an email address:
$provider = $this->get('bomo_ical.ics_provider');
$event = $cal->newEvent();
$event->setOrganizer('[email protected]');
it would be nice to support a common name (CN) as well
$event->setOrganizer('[email protected]', 'Mr. Smith');
cheers!