ryaan-anthony/magento-installer

There is no license information available for the latest version (v1.0.6) of this package.

Programmatically Install Magento v1

v1.0.6 2019-04-27 20:04 UTC

This package is auto-updated.

Last update: 2024-04-28 07:40:56 UTC


README

Programmatically Install Magento v1

Install

composer require ryaan_anthony/magento-installer

Usage

  • Instantiate the installer with default values
  $magentoInstaller = new RyaanAnthony\MagentoInstaller();
  • or configure the installer yourself
  $magentoInstaller = new RyaanAnthony\MagentoInstaller(
    'https://example.com/magento.tar.gz'
    '/path/to/magento/',
    'magento.tar.gz'
  );   
  • Download and extract Magento
  $magentoInstaller->setUp();

Caveats

  • Only works with gzipped tar files

Tested using PHP7.2