Is something like in the link below possible in Symfony2 ?
http://www.kodingmadesimple.com/2014/12/how-to-insert-json-data-into-mysql-php.html
My plan is to create a CRON Job that would hit a specific route which will execute logic in a controller that would persist json data into a database table at a set time every day.
So basically, I would grab the JSON file, extract the values I want and store them in variables, then persist them to a database table.