From 15bf3b9eacfe387310e758742b6d291ae395879f Mon Sep 17 00:00:00 2001 From: Aleksei Khudiakov Date: Tue, 2 May 2023 18:50:06 +1000 Subject: [PATCH] Drop unmaintained Vagrantfile Signed-off-by: Aleksei Khudiakov --- README.md | 35 ----------------------------- Vagrantfile | 57 ------------------------------------------------ public/index.php | 1 - 3 files changed, 93 deletions(-) delete mode 100644 Vagrantfile diff --git a/README.md b/README.md index c425494..4207246 100644 --- a/README.md +++ b/README.md @@ -110,41 +110,6 @@ Once psalm support is present, you can run the static analysis using: $ composer static-analysis ``` -## Using Vagrant - -This skeleton includes a `Vagrantfile` based on ubuntu 18.04 (bento box) -with configured Apache2 and PHP 7.3. Start it up using: - -```bash -$ vagrant up -``` - -Once built, you can also run composer within the box. For example, the following -will install dependencies: - -```bash -$ vagrant ssh -c 'composer install' -``` - -While this will update them: - -```bash -$ vagrant ssh -c 'composer update' -``` - -While running, Vagrant maps your host port 8080 to port 80 on the virtual -machine; you can visit the site at http://localhost:8080/ - -> ### Vagrant and VirtualBox -> -> The vagrant image is based on bento/ubuntu-18.04. If you are using VirtualBox as -> a provider, you will need: -> -> - Vagrant 2.2.6 or later -> - VirtualBox 6.0.14 or later - -For vagrant documentation, please refer to [vagrantup.com](https://www.vagrantup.com/) - ## Using docker-compose This skeleton provides a `docker-compose.yml` for use with diff --git a/Vagrantfile b/Vagrantfile deleted file mode 100644 index dd618f9..0000000 --- a/Vagrantfile +++ /dev/null @@ -1,57 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -VAGRANTFILE_API_VERSION = '2' - -@script = <