What is the best way to update a YAML file in PHP?
Currently I'm using the Symfony YAML component, and my code is as follows (note that $blueprint is the data from the YAML file). It works, but I'm not sure of its elegance. function update\\_blueprint($path, $data = []) { // Get existing data $bluepr...
Feb 27, 2017C