WP Auto Update
<?php
require_once(ABSPATH.'wp-settings.php');
// Auto Update CORE
define( 'WP_AUTO_UPDATE_CORE', true );
?>
<?php
// Add to functions.php of current theme -- not recommended to add this in config.php
//Auto update plugins
add_filter( 'auto_update_plugin', '__return_true' );
?>