Skip to content

Commit 0d46878

Browse files
authored
Merge pull request #4910 from sevenpixels/5.7
[5.7] Remove PHP 5.6 and 7.0 from Homestead docs
2 parents b0e4f0b + dd36f83 commit 0d46878

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

homestead.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Laravel strives to make the entire PHP development experience delightful, includ
3939

4040
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!
4141

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.
4343

4444
> {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.
4545
@@ -52,8 +52,6 @@ Homestead runs on any Windows, Mac, or Linux system, and includes the Nginx web
5252
- PHP 7.3
5353
- PHP 7.2
5454
- PHP 7.1
55-
- PHP 7.0
56-
- PHP 5.6
5755
- Nginx
5856
- Apache (Optional)
5957
- MySQL
@@ -491,17 +489,15 @@ After running the command, you will see an Ngrok screen appear which contains th
491489
<a name="multiple-php-versions"></a>
492490
### Multiple PHP Versions
493491

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):
495493

496494
sites:
497495
- map: homestead.test
498496
to: /home/vagrant/code/my-project/public
499-
php: "5.6"
497+
php: "7.1"
500498

501499
In addition, you may use any of the supported PHP versions via the CLI:
502500

503-
php5.6 artisan list
504-
php7.0 artisan list
505501
php7.1 artisan list
506502
php7.2 artisan list
507503
php7.3 artisan list

0 commit comments

Comments
 (0)