You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: homestead.md
+3-7Lines changed: 3 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ Laravel strives to make the entire PHP development experience delightful, includ
39
39
40
40
Laravel Homestead is an official, pre-packaged Vagrant box that provides you a wonderful development environment without requiring you to install PHP, a web server, and any other server software on your local machine. No more worrying about messing up your operating system! Vagrant boxes are completely disposable. If something goes wrong, you can destroy and re-create the box in minutes!
41
41
42
-
Homestead runs on any Windows, Mac, or Linux system, and includes the Nginx web server, PHP 7.3, PHP 7.2, PHP 7.1, PHP 7.0, PHP 5.6, MySQL, PostgreSQL, Redis, Memcached, Node, and all of the other goodies you need to develop amazing Laravel applications.
42
+
Homestead runs on any Windows, Mac, or Linux system, and includes the Nginx web server, PHP 7.3, PHP 7.2, PHP 7.1, MySQL, PostgreSQL, Redis, Memcached, Node, and all of the other goodies you need to develop amazing Laravel applications.
43
43
44
44
> {note} If you are using Windows, you may need to enable hardware virtualization (VT-x). It can usually be enabled via your BIOS. If you are using Hyper-V on a UEFI system you may additionally need to disable Hyper-V in order to access VT-x.
45
45
@@ -52,8 +52,6 @@ Homestead runs on any Windows, Mac, or Linux system, and includes the Nginx web
52
52
- PHP 7.3
53
53
- PHP 7.2
54
54
- PHP 7.1
55
-
- PHP 7.0
56
-
- PHP 5.6
57
55
- Nginx
58
56
- Apache (Optional)
59
57
- MySQL
@@ -491,17 +489,15 @@ After running the command, you will see an Ngrok screen appear which contains th
491
489
<aname="multiple-php-versions"></a>
492
490
### Multiple PHP Versions
493
491
494
-
Homestead 6 introduced support for multiple versions of PHP on the same virtual machine. You may specify which version of PHP to use for a given site within your `Homestead.yaml` file. The available PHP versions are: "5.6", "7.0", "7.1", "7.2" and "7.3" (the default):
492
+
Homestead 6 introduced support for multiple versions of PHP on the same virtual machine. You may specify which version of PHP to use for a given site within your `Homestead.yaml` file. The available PHP versions are: "7.1", "7.2" and "7.3" (the default):
495
493
496
494
sites:
497
495
- map: homestead.test
498
496
to: /home/vagrant/code/my-project/public
499
-
php: "5.6"
497
+
php: "7.1"
500
498
501
499
In addition, you may use any of the supported PHP versions via the CLI:
0 commit comments