This configures a PHP Ubuntu on Windows Development Environment providing you with a wonderful development environment without requiring you to manually install PHP, a web server, and any other server software on your local machine. No more worrying about messing up your operating system! If something goes wrong, you can destroy and re-create the setup with a few simple commands!
The development environment runs on Ubuntu on Windows inside the Windows Subsystem for Linux and includes the Nginx web server, PHP 7.x, MySQL, Postgres, Redis, Memcached, Node, and all of the other goodies you need to develop amazing PHP, Laravel, Drupal, Wordpress, and/or Symfony applications.
For best results start with a fresh installation of Ubuntu 20.04 on Windows with a username of vagrant
. From a fresh installation of Ubuntu on Windows from the Windows Store run the following installation commands from the Ubuntu terminal.
sudo adduser vagrant
### the default password should also be 'vagrant'
This installation script runs the Laravel Homestead provision script on your Ubuntu on Windows installation and applies several tweaks for use with Ubuntu on Windows.
wget "https://raw.githubusercontent.com/elegasoft/php-wsl-dev/master/scripts/provision.sh" -O ->> provision.sh
sudo chmod +x provision.sh
sudo bash provision.sh
After about an hour of setting up you are all set to go.
If the installation does not automatically link the aliases which are relied upon in the rest of this guide, please run the following commands in the Ubuntu on Windows shell.
rm /home/$USER/.bash_aliases
wget "https://raw.githubusercontent.com/elegasoft/php-wsl-dev/master/scripts/aliases" -O ->> /home/$USER/.bash_aliases
source /home/$USER/.profile
Coding Languages:
- Golang
- PHP 7.4, 7.3, 7.2, 7.1, 7.0, and 5.6 (each are installed and switchable with via the command line)
PHP Framework Support:
- Laravel (installers for Laravel, Lumen, Envoy and Spark, plus the Chrome Driver for Laravel Dusk)
- Wordpress (via wp-cli)
- Drupal (via drush/drush)
Node Build Tools:
- npm
- yarn
- gulp-cli
- bower
- grunt-cli
Databases/Datastores:
- MySQL
- PostgreSQL
- SQLite
- Redis
- Memcached
Debuggers/Profilers:
- Xdebug (automatically disabled from the commandline for performance)
- Blackfire
Queue Managers:
- Beanstalkd
- Supervisor
Misc:
- nginx with fpm
- Oh-My-Zsh (zshell)
- MailHog
- Postfix
- ngrok
- apt-fast
- For a default PHP project use
php -S localhost:8000
- For a Laravel project use
php artisan serve
orart serve
by default the website should be available at http://localhost:8000. If you would like ot change the port from 8000 to another port such as 8888 you can do so as follows:php artisan serve -p 8888
orart serve -p 8888
.
MySQL
- Host:
localhost
- Port:
3306
- Database:
homestead
- User:
homestead
- Password:
secret
PostgreSQL:
- Host:
localhost
- Port:
5432
- Database:
homestead
- User:
homestead
- Password:
secret
Run any of the following from the WSL command shell:
- Reset to PHP 7.4 (default)
php74
- Reset to PHP 7.3
php73
- Reset to PHP 7.2
php72
- Change to PHP 7.1
php71
- Change to PHP 7.0
php70
- Change to PHP 5.6
php56
Enter one of the following commands in the Ubuntu on Windows console:
xon
-- To turn on Xdebugxoff
-- To turn off Xdebug
The following will copy to your host Windows .ssh folder to the Ubuntu on Windows .ssh folder. If the usernames of your host Windows and Ubuntu on Windows installations are not the same be sure to change each of the $USER
references below to the username for your host Windows.
rm -rf ~/$USER/.ssh
cp -R /mnt/c/Users/$USER/.ssh ~/.ssh
sudo chmod 600 ~/.ssh/id_rsa
SSH logon should be available immediately after installation, however, if you are experiencing problems with the installation, please try the following.
sudo apt purge openssh-server
sudo apt install openssh-server
wget "https://raw.githubusercontent.com/elegasoft/php-wsl-dev/settler/scripts/sshd_config" -O ->> /home/$USER/sshd_config
echo "AllowUsers $USER" >> /home/$USER/sshd_config
sudo rm /etc/ssh/sshd_config
sudo mv /home/$USER/sshd_config /etc/ssh/sshd_config
sudo service ssh --full-restart
- Connect to your installation using favorite ssh client or in Git Bash you would
ssh [email protected]
and enter the password
Note: You will need to start the SSH Server after each login, alternatively, see How to automatically start ssh server on boot on Windows Subsystem for Linux by dentechy for how to configure the SSH Server to start automatically with Windows.
If you have already configured the SSH Server and after a restart you notice that you have lost SSH connectivity run ssh_restart
from the Bash/Ubuntu command line.
Navigate to File >> Settings >> Tools >> Terminal
and enter C:\Windows\System32\bash.exe
as the path to the shell.
Navigate to Tools >> Deployment >> Configuration
and add a new configuration with the following and enter your password.
- Type:
SFTP
- SFTP host:
127.0.0.1
- Port:
22
- User name:
vagrant
- Auth type:
Password
Please ensure you have already configured a as noted above
- Navigate to
File >> Settings >> Languages & Frameworks >> PHP
and find CLI Interpreter and click on the...
at the end of the line. - The CLI Interpreters window should open and click the
+
to add a new configuration. - Enter the following in the configuration:
- Choose Deployment configuration from the radio select list.
- Select the Deloyment Server you configured in the Configuring a Deployment Server section.
- In the following General section, enter
/usr/bin/php7.4
,/usr/bin/php7.3
,/usr/bin/php7.2
,/usr/bin/php7.1
,/usr/bin/php7.0
, or/usr/bin/php5.6
as the path to the PHP executable, then click on the refresh button to validate the path and ensure that you receive a success message. Note: It is recommended that repeat this process for all 4 versions of the availble PHP interpreters now. - Click Apply and then select OK to close the window.
- Configuring the Path Mappings (this is done a project level basis and required for PHPUnit to run successfully)
- At the
File >> Settings >> Languages & Frameworks >> PHP
settings menu findPath mappings
and select the...
at the end of the line. - Ensure your local path maps to the Windows on Ubuntu path to the same location.
* Local Path of:
C:\Users\JohnDoe\Code\Laravel
should have a remote path of/mnt/c/Users/JohnDoe/Code/Laravel
(note: the paths are case sensitive)
This step requires you have already completed each of the above steps under PHPStorm Intergrations.
- Navigate to
File >> Settings >> Languages & Frameworks >> PHP >> Test Frameworks
and click on the+
to add a new configuration and, if asked, select PHPUnit by Remote Interpreter. - Select an interpreter from the list.
- If you would like to see phpunit's code coverage reports find
Path mappings
and select the...
at the end of the line and in the new window ensure that you have again matched the local and remote paths as you did inSetting Up the PHP Interpreter
- A local Path of:
C:\Users\JohnDoe\Code\Laravel
should have a remote path of/mnt/c/Users/JohnDoe/Code/Laravel
(note: the paths are case sensitive)
- In the PHPUnit Library section select use Composer library and choose the path to your projects remote vendor/autoload.php file (e.g.
/mnt/c/Users/JohnDoe/Code/Laravel/vendor/autoload.php
and click on the refresh button to validate the currently installed PHPUnit Version. - In the Test Runner section check the box next to
Default configuration file
and click on the...
and enter the remote path to your projects phpunit.xml file (e.g./mnt/c/Users/JohnDow/Code/Laravel/phpunit.xml
)
This step requires you have already completed each of the above steps under PHPStorm Intergrations.
- Navigate to
Run >> Edit Configurations
and select the+
and select PHPUnit from the Add New Configuration select list. - Under the section for Test Runner find
Test Scope
and choose theDefined in the configuration file
option. - (Optional but Highly Recommended): You may want to add the following
Environment Variables
, as I have found it to significantly reduce unexpected errors when running PHPUnit.
- name:
APP_ENV
value:testing
- name:
DB_CONNECTION
value:sqlite
- name:
DB_DATABASE
value::memory:
(Note: If you are still receiving unexpected errors, be sure to clear your route cache (php artisan route:clear
) and config cache (php artisan config:clear
) prior to running PHPUnit.)
-
Laravel Valet -- This currently does not work because Windows manages the proxy/networking service and does not hand off the responsibility to Linux.
-
Mailhog -- When starting the service I have received several errors which have yet to be resolved. While was working in my initial testing since the installation of the Windows 10 April 2018 update it is no longer working.
-
PostgreSql -- There seems to be an intermitten issue where users are unable to connect to the Postgres database. Further investigation is necessary.