├── .gitignore ├── README.md └── src ├── AlanKent └── MagentoDev │ ├── CommandParser.php │ ├── Config.php │ ├── EnvironmentInterface.php │ ├── Environments │ └── VagrantRsync │ │ ├── README.md │ │ ├── VagrantRsyncEnvironment.php │ │ └── scripts │ │ ├── Vagrantfile │ │ ├── install-gulp │ │ ├── install-gulp-run-gulp.sh │ │ ├── install-magento │ │ ├── install-magento-apache2.conf │ │ ├── install-magento-magento.conf │ │ └── install-nodejs │ ├── MdException.php │ ├── ProviderInterface.php │ └── Providers │ ├── GoDaddy │ └── GoDaddyProvider.php │ └── MagentoCloud │ ├── MagentoCloudProvider.php │ └── README.md ├── autoloader.php └── magento-dev.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/README.md -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/CommandParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/CommandParser.php -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Config.php -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/EnvironmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/EnvironmentInterface.php -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/README.md -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/VagrantRsyncEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/VagrantRsyncEnvironment.php -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/Vagrantfile -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-gulp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-gulp -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-gulp-run-gulp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-gulp-run-gulp.sh -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-magento: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-magento -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-magento-apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-magento-apache2.conf -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-magento-magento.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-magento-magento.conf -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Environments/VagrantRsync/scripts/install-nodejs -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/MdException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/MdException.php -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/ProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/ProviderInterface.php -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Providers/GoDaddy/GoDaddyProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Providers/GoDaddy/GoDaddyProvider.php -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Providers/MagentoCloud/MagentoCloudProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Providers/MagentoCloud/MagentoCloudProvider.php -------------------------------------------------------------------------------- /src/AlanKent/MagentoDev/Providers/MagentoCloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/AlanKent/MagentoDev/Providers/MagentoCloud/README.md -------------------------------------------------------------------------------- /src/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/autoloader.php -------------------------------------------------------------------------------- /src/magento-dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/magento-dev/HEAD/src/magento-dev.php --------------------------------------------------------------------------------