├── .gitignore ├── README.md ├── _cli_stub.php ├── composer.json ├── composer.lock ├── example-config.php ├── magento-tar-to-connect.phar ├── magento-tar-to-connect.php ├── src └── magento │ └── downloader │ └── lib │ └── Mage │ ├── Archive │ ├── Abstract.php │ ├── Helper │ │ └── File.php │ ├── Interface.php │ └── Tar.php │ └── Exception.php └── tests ├── AuthorTest.php ├── ExampleTest.php ├── MagentoTarToConnectBaseTest.php ├── WhoTestsTheTestsTest.php └── fixtures ├── Pulsestorm_Better404.tar ├── first.tar └── first.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/README.md -------------------------------------------------------------------------------- /_cli_stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/_cli_stub.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/composer.lock -------------------------------------------------------------------------------- /example-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/example-config.php -------------------------------------------------------------------------------- /magento-tar-to-connect.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/magento-tar-to-connect.phar -------------------------------------------------------------------------------- /magento-tar-to-connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/magento-tar-to-connect.php -------------------------------------------------------------------------------- /src/magento/downloader/lib/Mage/Archive/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/src/magento/downloader/lib/Mage/Archive/Abstract.php -------------------------------------------------------------------------------- /src/magento/downloader/lib/Mage/Archive/Helper/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/src/magento/downloader/lib/Mage/Archive/Helper/File.php -------------------------------------------------------------------------------- /src/magento/downloader/lib/Mage/Archive/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/src/magento/downloader/lib/Mage/Archive/Interface.php -------------------------------------------------------------------------------- /src/magento/downloader/lib/Mage/Archive/Tar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/src/magento/downloader/lib/Mage/Archive/Tar.php -------------------------------------------------------------------------------- /src/magento/downloader/lib/Mage/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/src/magento/downloader/lib/Mage/Exception.php -------------------------------------------------------------------------------- /tests/AuthorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/tests/AuthorTest.php -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/MagentoTarToConnectBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/tests/MagentoTarToConnectBaseTest.php -------------------------------------------------------------------------------- /tests/WhoTestsTheTestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/tests/WhoTestsTheTestsTest.php -------------------------------------------------------------------------------- /tests/fixtures/Pulsestorm_Better404.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/tests/fixtures/Pulsestorm_Better404.tar -------------------------------------------------------------------------------- /tests/fixtures/first.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorm/MagentoTarToConnect/HEAD/tests/fixtures/first.tar -------------------------------------------------------------------------------- /tests/fixtures/first.txt: -------------------------------------------------------------------------------- 1 | This is a brain dead fixture. --------------------------------------------------------------------------------