├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── VERSION ├── _config.yml ├── bin ├── extdn_installer └── oneliner.sh ├── box.json ├── composer.json ├── composer.lock ├── config.yml ├── docs ├── ProductionModeInstall.gif └── index.md └── src ├── Command └── Installer.php └── Task ├── All.php ├── BaseBinMagento.php ├── CacheEnable.php ├── CacheStatus.php ├── CheckComposerIssues.php ├── CheckMagentoRoot.php ├── CheckPermissions.php ├── DefaultModeInstall.php ├── DeveloperModeInstall.php ├── DisableMaintenance.php ├── EnablingDeveloperMode.php ├── EnablingMaintenance.php ├── EnablingProductionMode.php ├── InstallCode.php ├── ModuleEnable.php ├── ModuleStatus.php ├── ProductionModeInstall.php ├── ReadCacheStatus.php ├── ReadCurrentLocales.php ├── ReadExistingModules.php ├── SetupDiCompile.php ├── SetupUpgrade.php └── StaticContentCompile.php /.gitignore: -------------------------------------------------------------------------------- 1 | ^vendor/ 2 | ^build/box.phar 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0-rc8 -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/extdn_installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/bin/extdn_installer -------------------------------------------------------------------------------- /bin/oneliner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/bin/oneliner.sh -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/composer.lock -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ProductionModeInstall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/docs/ProductionModeInstall.gif -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Command/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Command/Installer.php -------------------------------------------------------------------------------- /src/Task/All.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/All.php -------------------------------------------------------------------------------- /src/Task/BaseBinMagento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/BaseBinMagento.php -------------------------------------------------------------------------------- /src/Task/CacheEnable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/CacheEnable.php -------------------------------------------------------------------------------- /src/Task/CacheStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/CacheStatus.php -------------------------------------------------------------------------------- /src/Task/CheckComposerIssues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/CheckComposerIssues.php -------------------------------------------------------------------------------- /src/Task/CheckMagentoRoot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/CheckMagentoRoot.php -------------------------------------------------------------------------------- /src/Task/CheckPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/CheckPermissions.php -------------------------------------------------------------------------------- /src/Task/DefaultModeInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/DefaultModeInstall.php -------------------------------------------------------------------------------- /src/Task/DeveloperModeInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/DeveloperModeInstall.php -------------------------------------------------------------------------------- /src/Task/DisableMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/DisableMaintenance.php -------------------------------------------------------------------------------- /src/Task/EnablingDeveloperMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/EnablingDeveloperMode.php -------------------------------------------------------------------------------- /src/Task/EnablingMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/EnablingMaintenance.php -------------------------------------------------------------------------------- /src/Task/EnablingProductionMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/EnablingProductionMode.php -------------------------------------------------------------------------------- /src/Task/InstallCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/InstallCode.php -------------------------------------------------------------------------------- /src/Task/ModuleEnable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/ModuleEnable.php -------------------------------------------------------------------------------- /src/Task/ModuleStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/ModuleStatus.php -------------------------------------------------------------------------------- /src/Task/ProductionModeInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/ProductionModeInstall.php -------------------------------------------------------------------------------- /src/Task/ReadCacheStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/ReadCacheStatus.php -------------------------------------------------------------------------------- /src/Task/ReadCurrentLocales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/ReadCurrentLocales.php -------------------------------------------------------------------------------- /src/Task/ReadExistingModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/ReadExistingModules.php -------------------------------------------------------------------------------- /src/Task/SetupDiCompile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/SetupDiCompile.php -------------------------------------------------------------------------------- /src/Task/SetupUpgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/SetupUpgrade.php -------------------------------------------------------------------------------- /src/Task/StaticContentCompile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extdn/installer-m2/HEAD/src/Task/StaticContentCompile.php --------------------------------------------------------------------------------