In a previous version of Skipper (over a year old), exporting my ORM YAML files to Symfony would generate gedmo configurations that looked like this:
gedmo:
timestampable:
'on': create
After updating to the latest version, the output looks like this:
gedmo:
- timestampable:
on: create
The quotes being removed for "on" is not a problem, bit the " - " prefix on timestampable is causing errors in our Symfony 3.4 app.
Besides using a different output format like XML, is there a way to adjust the YAML format?