min

This sets the minimal value for the rating. The default is 0.
This is demonstrated in the code snippet below:

<div id="rating"></div>

<script type="text/javascript">
jQuery(function($) {
    $("#rating").shieldRating({
        min: 0,
        max: 10
    });
});
</script>