When using new ServiceAccountValidator class $options['p12_key_path'] should contain contents of a key file instead of it's path. Example examples/test_play_service_account.php wouldn't work because $p12_key_path holds a path to a key file.
Either key name 'p12_key_path' should be changed to 'p12_key' or line 12 @ ServiceAccountValidator.php should be replaced with file_get_contents($options['p12_key_path']).
When using new ServiceAccountValidator class $options['p12_key_path'] should contain contents of a key file instead of it's path. Example examples/test_play_service_account.php wouldn't work because $p12_key_path holds a path to a key file.
Either key name 'p12_key_path' should be changed to 'p12_key' or line 12 @ ServiceAccountValidator.php should be replaced with file_get_contents($options['p12_key_path']).