├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── modman ├── n98-magerun.yaml ├── src ├── Check │ ├── AbstractCheck.php │ ├── CodePool.php │ ├── Controller.php │ ├── Rewrite.php │ └── Theme.php └── Magento │ └── Command │ ├── AbstractCommand.php │ ├── Compat │ ├── CodePoolCommand.php │ ├── ControllerCommand.php │ ├── RewriteCommand.php │ └── ThemeCommand.php │ └── CompatCommand.php └── tests └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/composer.lock -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- 1 | . lib/n98-magerun/modules/tib-patchpal 2 | -------------------------------------------------------------------------------- /n98-magerun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/n98-magerun.yaml -------------------------------------------------------------------------------- /src/Check/AbstractCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Check/AbstractCheck.php -------------------------------------------------------------------------------- /src/Check/CodePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Check/CodePool.php -------------------------------------------------------------------------------- /src/Check/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Check/Controller.php -------------------------------------------------------------------------------- /src/Check/Rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Check/Rewrite.php -------------------------------------------------------------------------------- /src/Check/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Check/Theme.php -------------------------------------------------------------------------------- /src/Magento/Command/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Magento/Command/AbstractCommand.php -------------------------------------------------------------------------------- /src/Magento/Command/Compat/CodePoolCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Magento/Command/Compat/CodePoolCommand.php -------------------------------------------------------------------------------- /src/Magento/Command/Compat/ControllerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Magento/Command/Compat/ControllerCommand.php -------------------------------------------------------------------------------- /src/Magento/Command/Compat/RewriteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Magento/Command/Compat/RewriteCommand.php -------------------------------------------------------------------------------- /src/Magento/Command/Compat/ThemeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Magento/Command/Compat/ThemeCommand.php -------------------------------------------------------------------------------- /src/Magento/Command/CompatCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/src/Magento/Command/CompatCommand.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocallaghan/magerun-patchpal/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------