Modify software properties. Allow to add or remove software properties.
Parameters:array $props
The software properties.
Example usage:
<?php
add_filter( 'slswc_set_software_props', function( $props ) {
$props['opensource_url'] = 'github.com';
return $props;
});