Tag: php
-
Vagrant image for PHP development
There is the Vagrant image created for fast and easy PHP developing. https://app.vagrantup.com/sdobreff/boxes/ubuntu-20-php-all-in What is included: Ubuntu 20.04.1 LTS PHP 7.4.10 nginx 1.17.10 MySQL 8.0.21 ZSH and oh-my-zsh To use the image: vagrant box add sdobreff/ubuntu-20-php-all-in vagrant destroy vagrant init sdobreff/ubuntu-20-php-all-in That will initialize your vagrant box and will create file named Vagrantfile in the…
-
VS Code + XDebug 3
I’ve started using VS code very recently, and one of the things I was really thrilled about is the option to use XDebug for PHP inside VS code. I’m using Vagrant for my development, and that’s why I have to find a way to run it inside Vagrant guest machine. It turns out that all…