How to uninstall a Mage2.PRO extension?

Do you have uninstall instructions for mage2pro extensions to remove them entirely? Bought and installed an extension that we’re no longer using and before I attempt to remove it, I’d like to know if you hast ve a safe process of deletion documented somewhere.

I can just disable it, but I know we’re not going to ever use it so I think it’s probably safer to remove it. Specific extension I need to work on removing is “Stripe” payments extension.

Step 1

composer remove <package name>

E.g.: composer remove mage2.pro/stripe

Step 2

bin/magento setup:upgrade

Step 3

rm -rf pub/static/* && bin/magento setup:static-content:deploy

Step 4

rm -rf var/di var/generation && bin/magento setup:di:compile