Thank you mr1031011,
my fault. I have double checked it and in conclusion you need to overwrite form_div_layout.html.twig - you can find more about extending form layout in here http://symfony.com/doc/current/cookbook/form/form_customization.html .
I have added attr to one of the blocks - it seems to be working now.
{% block choice_widget_expanded %}
{% spaceless %}
<div {{ block('widget_container_attributes') }}>
{% for child in form %}
{{ form_widget(child, { 'attr': {'class': 'subclass', 'rel': 'test'} }) }}
{{ form_label(child) }}
{% endfor %}
</div>
{% endspaceless %}
{% endblock choice_widget_expanded %}
The only one difference between the code from core and mine is , { 'attr': {'class': 'subclass', 'rel': 'test'} } is added. Of course you can generalize this part by adding some options like subattr or something like that, but in this example you can find an idea.
I hope that will help
regards.