Hey,
I just had to deal with this. The problem in twcm-class-twitter-cards-preview.php line 27:
$screens = ['post', 'page'];
The problem occurs with older PHP versions which do not understand this bracket syntax. To fix this easily, replace the line above with:
$screens = array('post', 'page');
HTH
Martin