├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── bootstrap.sh └── public └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vagrant/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritix/vagrant-php7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritix/vagrant-php7/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritix/vagrant-php7/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritix/vagrant-php7/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 |