Can’t change posts per page in WordPress Post Type Query

The meta_query parameter must be change in an array of array for a single custom field handling:

 'meta_query' => array(
     array(
         'key'     => 'min_event-start',
         'value'   => date('Y-m-d'),
         'compare' => '>',
    )
 )

You will the informations WP_Query in the Single Custom field handling part

Hope it will work with this.