class RuboCop::Cop::Chef::Modernize::PowershellInstallPackage

Use the powershell_package resource built into Chef Infra Client instead of the powershell_script resource to run Install-Package

@example

 ### incorrect
 powershell_script 'Expand website' do
   code 'Install-Package -Name docker'
 end

### correct
powershell_package 'docker'