├── .gitignore ├── .parallels ├── .htaccess ├── run.php └── run.sh ├── README.markdown └── app ├── code └── local │ └── Oggetto │ └── Parallels │ ├── Model │ ├── Config.php │ ├── Process │ │ └── Interface.php │ ├── Registry.php │ └── Runner.php │ ├── Test │ └── Model │ │ ├── Process.php │ │ ├── Process │ │ └── fixtures │ │ │ └── testFinding.yaml │ │ └── Runner.php │ └── etc │ └── config.xml └── etc └── modules └── Oggetto_Parallels.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.parallels/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/.parallels/.htaccess -------------------------------------------------------------------------------- /.parallels/run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/.parallels/run.php -------------------------------------------------------------------------------- /.parallels/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/.parallels/run.sh -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/README.markdown -------------------------------------------------------------------------------- /app/code/local/Oggetto/Parallels/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/code/local/Oggetto/Parallels/Model/Config.php -------------------------------------------------------------------------------- /app/code/local/Oggetto/Parallels/Model/Process/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/code/local/Oggetto/Parallels/Model/Process/Interface.php -------------------------------------------------------------------------------- /app/code/local/Oggetto/Parallels/Model/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/code/local/Oggetto/Parallels/Model/Registry.php -------------------------------------------------------------------------------- /app/code/local/Oggetto/Parallels/Model/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/code/local/Oggetto/Parallels/Model/Runner.php -------------------------------------------------------------------------------- /app/code/local/Oggetto/Parallels/Test/Model/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/code/local/Oggetto/Parallels/Test/Model/Process.php -------------------------------------------------------------------------------- /app/code/local/Oggetto/Parallels/Test/Model/Process/fixtures/testFinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/code/local/Oggetto/Parallels/Test/Model/Process/fixtures/testFinding.yaml -------------------------------------------------------------------------------- /app/code/local/Oggetto/Parallels/Test/Model/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/code/local/Oggetto/Parallels/Test/Model/Runner.php -------------------------------------------------------------------------------- /app/code/local/Oggetto/Parallels/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/code/local/Oggetto/Parallels/etc/config.xml -------------------------------------------------------------------------------- /app/etc/modules/Oggetto_Parallels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OggettoWeb/Magento-Parallels/HEAD/app/etc/modules/Oggetto_Parallels.xml --------------------------------------------------------------------------------