- Issue created by @D34dMan
Automatically closed - issue fixed for 2 weeks with no activity.
Drupal Core ships with Yaml Class which can be used to perform the Yaml decoding. Hence this module is not needed anymore.
Before
$decoded_string = yaml_parser_parse_string('yaml: string');
After
$decoded_string = Yaml::decode(file_get_contents('/path/to/file.yml'));
Before
$decoded_string = yaml_parser_parse_file('/path/to/file.yml');
After
$decoded_string = Yaml::decode(file_get_contents('/path/to/file.yml'));
Active
1.0
Documentation
Automatically closed - issue fixed for 2 weeks with no activity.