JQuery widget options have to be moved to a configs
key :
Before :
$formBuilder
->add('country', 'genemu_jquerytokeninput_country', array(
'tokenLimit' => 2,
'theme' => 'facebook',
));
Now :
$formBuilder
->add('country', 'genemu_jquerytokeninput_country', array(
'configs' => array(
'tokenLimit' => 2,
'theme' => 'facebook',
)
));