├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Vagrantfile └── bootstrap.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vagrant/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanstreet/magento2-vagrant/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanstreet/magento2-vagrant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanstreet/magento2-vagrant/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanstreet/magento2-vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanstreet/magento2-vagrant/HEAD/bootstrap.sh --------------------------------------------------------------------------------