├── 1.12 ├── benchmark.jmx ├── fixtures │ ├── cart_price_rules.php │ ├── catalog_price_rules.php │ ├── catalog_target_rules.php │ ├── categories.php │ ├── configurable_products.php │ ├── customers.php │ ├── disable_form_key_usage.php │ ├── eav_variations.php │ ├── shipping_flatrate_enabled.php │ ├── simple_products.php │ ├── stores.php │ ├── tax_rates.csv │ └── tax_rates.php ├── framework │ ├── Magento │ │ ├── Shell.php │ │ └── ToolkitFramework │ │ │ ├── Application.php │ │ │ ├── Config.php │ │ │ ├── FixtureSet.php │ │ │ ├── Helper │ │ │ └── Cli.php │ │ │ └── ImportExport │ │ │ └── Fixture │ │ │ ├── Complex │ │ │ ├── Generator.php │ │ │ └── Pattern.php │ │ │ ├── Generator.php │ │ │ ├── SourceAbstract.php │ │ │ └── Tax │ │ │ └── Import │ │ │ └── CsvHandler.php │ ├── bootstrap.php │ ├── fixtures.xml │ └── labels.xml ├── generate.php ├── indexer.php └── profiles │ ├── extra_large.xml │ ├── large.xml │ ├── medium.xml │ └── small.xml ├── 1.13 ├── benchmark.jmx ├── fixtures │ ├── cart_price_rules.php │ ├── catalog_price_rules.php │ ├── catalog_target_rules.php │ ├── categories.php │ ├── configurable_products.php │ ├── customers.php │ ├── disable_form_key_usage.php │ ├── eav_variations.php │ ├── shipping_flatrate_enabled.php │ ├── simple_products.php │ ├── stores.php │ ├── tax_rates.csv │ └── tax_rates.php ├── framework │ ├── Magento │ │ ├── Shell.php │ │ └── ToolkitFramework │ │ │ ├── Application.php │ │ │ ├── Config.php │ │ │ ├── FixtureSet.php │ │ │ ├── Helper │ │ │ └── Cli.php │ │ │ └── ImportExport │ │ │ └── Fixture │ │ │ ├── Complex │ │ │ ├── Generator.php │ │ │ └── Pattern.php │ │ │ ├── Generator.php │ │ │ ├── SourceAbstract.php │ │ │ └── Tax │ │ │ └── Import │ │ │ └── CsvHandler.php │ ├── bootstrap.php │ ├── fixtures.xml │ └── labels.xml ├── generate.php ├── indexer.php └── profiles │ ├── extra_large.xml │ ├── large.xml │ ├── medium.xml │ └── small.xml ├── 1.14 ├── benchmark.jmx ├── fixtures │ ├── cart_price_rules.php │ ├── catalog_price_rules.php │ ├── catalog_target_rules.php │ ├── categories.php │ ├── configurable_products.php │ ├── customers.php │ ├── disable_form_key_usage.php │ ├── eav_variations.php │ ├── shipping_flatrate_enabled.php │ ├── simple_products.php │ ├── stores.php │ ├── tax_rates.csv │ └── tax_rates.php ├── framework │ ├── Magento │ │ ├── Shell.php │ │ └── ToolkitFramework │ │ │ ├── Application.php │ │ │ ├── Config.php │ │ │ ├── FixtureSet.php │ │ │ ├── Helper │ │ │ └── Cli.php │ │ │ └── ImportExport │ │ │ └── Fixture │ │ │ ├── Complex │ │ │ ├── Generator.php │ │ │ └── Pattern.php │ │ │ ├── Generator.php │ │ │ ├── SourceAbstract.php │ │ │ └── Tax │ │ │ └── Import │ │ │ └── CsvHandler.php │ ├── bootstrap.php │ ├── fixtures.xml │ └── labels.xml ├── generate.php └── profiles │ ├── extra_large.xml │ ├── large.xml │ ├── medium.xml │ └── small.xml ├── 1.9ce ├── benchmark-small.jmx ├── benchmark.jmx ├── fixtures │ ├── cart_price_rules.php │ ├── catalog_price_rules.php │ ├── catalog_target_rules.php │ ├── categories.php │ ├── configurable_products.php │ ├── customers.php │ ├── disable_form_key_usage.php │ ├── eav_variations.php │ ├── shipping_flatrate_enabled.php │ ├── simple_products.php │ ├── stores.php │ ├── tax_rates.csv │ └── tax_rates.php ├── framework │ ├── Magento │ │ ├── Shell.php │ │ └── ToolkitFramework │ │ │ ├── Application.php │ │ │ ├── Config.php │ │ │ ├── FixtureSet.php │ │ │ ├── Helper │ │ │ └── Cli.php │ │ │ └── ImportExport │ │ │ └── Fixture │ │ │ ├── Complex │ │ │ ├── Generator.php │ │ │ └── Pattern.php │ │ │ ├── Generator.php │ │ │ ├── SourceAbstract.php │ │ │ └── Tax │ │ │ └── Import │ │ │ └── CsvHandler.php │ ├── bootstrap.php │ ├── fixtures.xml │ └── labels.xml ├── generate.php ├── profiles │ ├── extra_large.xml │ ├── large.xml │ ├── medium.xml │ ├── scaling_tutorial.xml │ └── small.xml └── tmp │ └── import.csv ├── LICENSE.txt └── Magento Performance Toolkit User Guide.pdf /1.12/benchmark.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/benchmark.jmx -------------------------------------------------------------------------------- /1.12/fixtures/cart_price_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/cart_price_rules.php -------------------------------------------------------------------------------- /1.12/fixtures/catalog_price_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/catalog_price_rules.php -------------------------------------------------------------------------------- /1.12/fixtures/catalog_target_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/catalog_target_rules.php -------------------------------------------------------------------------------- /1.12/fixtures/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/categories.php -------------------------------------------------------------------------------- /1.12/fixtures/configurable_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/configurable_products.php -------------------------------------------------------------------------------- /1.12/fixtures/customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/customers.php -------------------------------------------------------------------------------- /1.12/fixtures/disable_form_key_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/disable_form_key_usage.php -------------------------------------------------------------------------------- /1.12/fixtures/eav_variations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/eav_variations.php -------------------------------------------------------------------------------- /1.12/fixtures/shipping_flatrate_enabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/shipping_flatrate_enabled.php -------------------------------------------------------------------------------- /1.12/fixtures/simple_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/simple_products.php -------------------------------------------------------------------------------- /1.12/fixtures/stores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/stores.php -------------------------------------------------------------------------------- /1.12/fixtures/tax_rates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/tax_rates.csv -------------------------------------------------------------------------------- /1.12/fixtures/tax_rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/fixtures/tax_rates.php -------------------------------------------------------------------------------- /1.12/framework/Magento/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/Shell.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/Application.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/Config.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/FixtureSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/FixtureSet.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/Helper/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/Helper/Cli.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Generator.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Pattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Pattern.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/Generator.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/SourceAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/SourceAbstract.php -------------------------------------------------------------------------------- /1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/Tax/Import/CsvHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/Magento/ToolkitFramework/ImportExport/Fixture/Tax/Import/CsvHandler.php -------------------------------------------------------------------------------- /1.12/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/bootstrap.php -------------------------------------------------------------------------------- /1.12/framework/fixtures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/fixtures.xml -------------------------------------------------------------------------------- /1.12/framework/labels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/framework/labels.xml -------------------------------------------------------------------------------- /1.12/generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/generate.php -------------------------------------------------------------------------------- /1.12/indexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/indexer.php -------------------------------------------------------------------------------- /1.12/profiles/extra_large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/profiles/extra_large.xml -------------------------------------------------------------------------------- /1.12/profiles/large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/profiles/large.xml -------------------------------------------------------------------------------- /1.12/profiles/medium.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/profiles/medium.xml -------------------------------------------------------------------------------- /1.12/profiles/small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.12/profiles/small.xml -------------------------------------------------------------------------------- /1.13/benchmark.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/benchmark.jmx -------------------------------------------------------------------------------- /1.13/fixtures/cart_price_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/cart_price_rules.php -------------------------------------------------------------------------------- /1.13/fixtures/catalog_price_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/catalog_price_rules.php -------------------------------------------------------------------------------- /1.13/fixtures/catalog_target_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/catalog_target_rules.php -------------------------------------------------------------------------------- /1.13/fixtures/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/categories.php -------------------------------------------------------------------------------- /1.13/fixtures/configurable_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/configurable_products.php -------------------------------------------------------------------------------- /1.13/fixtures/customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/customers.php -------------------------------------------------------------------------------- /1.13/fixtures/disable_form_key_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/disable_form_key_usage.php -------------------------------------------------------------------------------- /1.13/fixtures/eav_variations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/eav_variations.php -------------------------------------------------------------------------------- /1.13/fixtures/shipping_flatrate_enabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/shipping_flatrate_enabled.php -------------------------------------------------------------------------------- /1.13/fixtures/simple_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/simple_products.php -------------------------------------------------------------------------------- /1.13/fixtures/stores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/stores.php -------------------------------------------------------------------------------- /1.13/fixtures/tax_rates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/tax_rates.csv -------------------------------------------------------------------------------- /1.13/fixtures/tax_rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/fixtures/tax_rates.php -------------------------------------------------------------------------------- /1.13/framework/Magento/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/Shell.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/Application.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/Config.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/FixtureSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/FixtureSet.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/Helper/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/Helper/Cli.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Generator.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Pattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Pattern.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/Generator.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/SourceAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/SourceAbstract.php -------------------------------------------------------------------------------- /1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/Tax/Import/CsvHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/Magento/ToolkitFramework/ImportExport/Fixture/Tax/Import/CsvHandler.php -------------------------------------------------------------------------------- /1.13/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/bootstrap.php -------------------------------------------------------------------------------- /1.13/framework/fixtures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/fixtures.xml -------------------------------------------------------------------------------- /1.13/framework/labels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/framework/labels.xml -------------------------------------------------------------------------------- /1.13/generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/generate.php -------------------------------------------------------------------------------- /1.13/indexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/indexer.php -------------------------------------------------------------------------------- /1.13/profiles/extra_large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/profiles/extra_large.xml -------------------------------------------------------------------------------- /1.13/profiles/large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/profiles/large.xml -------------------------------------------------------------------------------- /1.13/profiles/medium.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/profiles/medium.xml -------------------------------------------------------------------------------- /1.13/profiles/small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.13/profiles/small.xml -------------------------------------------------------------------------------- /1.14/benchmark.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/benchmark.jmx -------------------------------------------------------------------------------- /1.14/fixtures/cart_price_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/cart_price_rules.php -------------------------------------------------------------------------------- /1.14/fixtures/catalog_price_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/catalog_price_rules.php -------------------------------------------------------------------------------- /1.14/fixtures/catalog_target_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/catalog_target_rules.php -------------------------------------------------------------------------------- /1.14/fixtures/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/categories.php -------------------------------------------------------------------------------- /1.14/fixtures/configurable_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/configurable_products.php -------------------------------------------------------------------------------- /1.14/fixtures/customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/customers.php -------------------------------------------------------------------------------- /1.14/fixtures/disable_form_key_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/disable_form_key_usage.php -------------------------------------------------------------------------------- /1.14/fixtures/eav_variations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/eav_variations.php -------------------------------------------------------------------------------- /1.14/fixtures/shipping_flatrate_enabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/shipping_flatrate_enabled.php -------------------------------------------------------------------------------- /1.14/fixtures/simple_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/simple_products.php -------------------------------------------------------------------------------- /1.14/fixtures/stores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/stores.php -------------------------------------------------------------------------------- /1.14/fixtures/tax_rates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/tax_rates.csv -------------------------------------------------------------------------------- /1.14/fixtures/tax_rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/fixtures/tax_rates.php -------------------------------------------------------------------------------- /1.14/framework/Magento/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/Shell.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/Application.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/Config.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/FixtureSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/FixtureSet.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/Helper/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/Helper/Cli.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Generator.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Pattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Pattern.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/Generator.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/SourceAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/SourceAbstract.php -------------------------------------------------------------------------------- /1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/Tax/Import/CsvHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/Magento/ToolkitFramework/ImportExport/Fixture/Tax/Import/CsvHandler.php -------------------------------------------------------------------------------- /1.14/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/bootstrap.php -------------------------------------------------------------------------------- /1.14/framework/fixtures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/fixtures.xml -------------------------------------------------------------------------------- /1.14/framework/labels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/framework/labels.xml -------------------------------------------------------------------------------- /1.14/generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/generate.php -------------------------------------------------------------------------------- /1.14/profiles/extra_large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/profiles/extra_large.xml -------------------------------------------------------------------------------- /1.14/profiles/large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/profiles/large.xml -------------------------------------------------------------------------------- /1.14/profiles/medium.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/profiles/medium.xml -------------------------------------------------------------------------------- /1.14/profiles/small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.14/profiles/small.xml -------------------------------------------------------------------------------- /1.9ce/benchmark-small.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/benchmark-small.jmx -------------------------------------------------------------------------------- /1.9ce/benchmark.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/benchmark.jmx -------------------------------------------------------------------------------- /1.9ce/fixtures/cart_price_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/cart_price_rules.php -------------------------------------------------------------------------------- /1.9ce/fixtures/catalog_price_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/catalog_price_rules.php -------------------------------------------------------------------------------- /1.9ce/fixtures/catalog_target_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/catalog_target_rules.php -------------------------------------------------------------------------------- /1.9ce/fixtures/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/categories.php -------------------------------------------------------------------------------- /1.9ce/fixtures/configurable_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/configurable_products.php -------------------------------------------------------------------------------- /1.9ce/fixtures/customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/customers.php -------------------------------------------------------------------------------- /1.9ce/fixtures/disable_form_key_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/disable_form_key_usage.php -------------------------------------------------------------------------------- /1.9ce/fixtures/eav_variations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/eav_variations.php -------------------------------------------------------------------------------- /1.9ce/fixtures/shipping_flatrate_enabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/shipping_flatrate_enabled.php -------------------------------------------------------------------------------- /1.9ce/fixtures/simple_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/simple_products.php -------------------------------------------------------------------------------- /1.9ce/fixtures/stores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/stores.php -------------------------------------------------------------------------------- /1.9ce/fixtures/tax_rates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/tax_rates.csv -------------------------------------------------------------------------------- /1.9ce/fixtures/tax_rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/fixtures/tax_rates.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/Shell.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/Application.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/Config.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/FixtureSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/FixtureSet.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/Helper/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/Helper/Cli.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Generator.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Pattern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/Complex/Pattern.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/Generator.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/SourceAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/SourceAbstract.php -------------------------------------------------------------------------------- /1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/Tax/Import/CsvHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/Magento/ToolkitFramework/ImportExport/Fixture/Tax/Import/CsvHandler.php -------------------------------------------------------------------------------- /1.9ce/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/bootstrap.php -------------------------------------------------------------------------------- /1.9ce/framework/fixtures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/fixtures.xml -------------------------------------------------------------------------------- /1.9ce/framework/labels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/framework/labels.xml -------------------------------------------------------------------------------- /1.9ce/generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/generate.php -------------------------------------------------------------------------------- /1.9ce/profiles/extra_large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/profiles/extra_large.xml -------------------------------------------------------------------------------- /1.9ce/profiles/large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/profiles/large.xml -------------------------------------------------------------------------------- /1.9ce/profiles/medium.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/profiles/medium.xml -------------------------------------------------------------------------------- /1.9ce/profiles/scaling_tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/profiles/scaling_tutorial.xml -------------------------------------------------------------------------------- /1.9ce/profiles/small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/profiles/small.xml -------------------------------------------------------------------------------- /1.9ce/tmp/import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/1.9ce/tmp/import.csv -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Magento Performance Toolkit User Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aepod/magento-performance-toolkit/HEAD/Magento Performance Toolkit User Guide.pdf --------------------------------------------------------------------------------