There is a minimum order add-on that might be able to be adapted to this ...
Otherwise, you could customize the checkout pages to prevent checkout unless this criteria is met ...
Follow the code for each of the /includes/pages/checkout_something/header_php.php files ...
PHP Code:
if ($_SESSION['cart']->count_contents() <= 0) {
zen_redirect(zen_href_link(FILENAME_TIME_OUT));
}
You can adapt the code here ...
You may wish to make it a function in case there are further criteria need later for future changes so you only need to change the code once vs all locations ...
This is not an override so you will need to save your files for future upgrades ...