How to Switch PHP Version with Laravel Valet

Updated: Aug 04, 2023

If you are a web developer working with Laravel, you understand the importance of having the right PHP version for your projects. Different Laravel versions may require specific PHP configurations, and at times, you may need to switch between PHP versions to ensure compatibility and performance. Laravel Valet, a powerful development environment for macOS, makes it incredibly easy to switch PHP versions. In this comprehensive guide, we'll walk you through the process of switching PHP versions using Laravel Valet, providing step-by-step instructions and useful insights to help you navigate this process effortlessly.

How to Switch PHP Version with Laravel Valet

To switch PHP versions with Laravel Valet, follow these simple steps:

1. Checking the Current PHP Version

The first step is to check the current PHP version installed on your system. Open your terminal and run the following command:

php -v

This command will display the current PHP version along with other relevant details.

2. Installing Desired PHP Version

Next, you'll need to install the desired PHP version if it's not already installed. Laravel Valet supports multiple PHP versions, and you can choose the one that best suits your project requirements. To install a specific version, use Homebrew:

brew install php@7.4

Replace 7.4 with your preferred version number.

3. Switching PHP Versions

Now that you have multiple PHP versions installed, you can easily switch between them with a single command. Use the following command to switch to a different PHP version:

valet use php@7.4

Again, replace 7.4 with the version you want to use. Laravel Valet will handle the switching process for you.

4. Verifying the PHP Version

To ensure that the PHP version has been switched successfully, use the php -v command again:

php -v

Confirm that the displayed PHP version matches the one you switched to.

5. Switching Back to the Previous Version

If you ever need to switch back to the previous PHP version, use the same valet use command with the appropriate version number:

valet use php@7.3

6. Managing Multiple PHP Versions

Laravel Valet allows you to have multiple PHP versions installed on your system simultaneously. This is particularly useful when working on projects with different PHP requirements. You can switch between versions seamlessly using the valet use command, making your development process more efficient and flexible.

7. Troubleshooting PHP Version Switching

In some cases, you may encounter issues while switching PHP versions. If you face any problems, consider the following steps to troubleshoot the process:

8. Creating Valet Site Specific PHP Configuration

Sometimes, you may need to have specific PHP configurations for individual Laravel Valet sites. To do this, navigate to the site directory and create a .php-version file containing the desired PHP version number:

cd ~/Sites/my-laravel-site
echo "7.4" > .php-version

This way, when you access your Laravel site using Valet, it will automatically use the PHP version specified in the .php-version file.

9. Updating Composer After Switching PHP Version

After switching PHP versions, it's essential to ensure that Composer, the PHP package manager, also works with the new version. Run the following command to update Composer:

composer update

10. Using Valet Links with Specific PHP Version

Laravel Valet's link command allows you to create a symbolic link to a specific PHP version. This is beneficial when you need to use a specific PHP binary outside of Valet's context:

valet link php@7.4

Now you can use the php command with the linked PHP version:

php-7.4 -v

11. Checking PHP Extensions

Different PHP versions may have different extensions enabled or disabled by default. After switching PHP versions, ensure that all the required extensions for your project are installed and enabled. You can view the installed extensions using the following command:

php -m

12. Using Valet Secure with Switched PHP Version

Laravel Valet provides a secure HTTPS feature. After switching PHP versions, you can enable HTTPS for your site using the following command:

valet secure

This will generate an SSL certificate for your site and enable HTTPS.

13. Updating Valet and PHP

Frequently updating Laravel Valet and PHP to their latest versions is essential for security and performance reasons. Use the following commands to update both:

composer global update
brew upgrade php

14. Automatic PHP Version Detection

Laravel Valet automatically detects the PHP version required for each project based on the PHP version specified in the project's composer.json file. This eliminates the need to switch PHP versions manually for most projects.

15. Using Valet TLD with Different PHP Versions

Valet TLD allows you to use a custom top-level domain for your local development sites. When using Valet TLD, you can associate different PHP versions with different domains using the .valet configuration file.

To switch PHP versions for a specific TLD, open the .valet file:

sudo nano ~/.valet/config.json

Add the following section to specify the PHP version:

{"tld": "dev","paths": [],"php": "[email protected]"
}

Replace 7.4 with the desired PHP version.

16. Using Valet and Homebrew Together

If you have both Laravel Valet and Homebrew installed on your system, you may need to pay attention to the PHP versions installed via Homebrew. Valet may use a different PHP version than the one you expect. To ensure Valet uses the correct PHP version, follow these steps:

  1. Install the desired PHP version using Homebrew: brew install [email protected].
  2. Switch to the desired PHP version: valet use [email protected].
  3. Restart Valet: valet restart.

This will ensure that Valet uses the correct PHP version from Homebrew.

17. Debugging PHP Version Issues

If you encounter any unexpected issues related to PHP version switching, you can check Valet's log files for more information:

cat ~/.config/valet/Log/error.log

The log file may provide insights into the problem and help you troubleshoot.

18. Rolling Back to Previous PHP Version

In case you need to roll back to a previous PHP version, you can follow the same steps as switching PHP versions. Use the valet use command with the version number you want to switch to, and Valet will handle the rollback for you.

19. PHP Version Deprecation and End of Life

Keep in mind that PHP versions have deprecation and end-of-life dates. Using an unsupported PHP version may lead to security vulnerabilities and compatibility issues. Stay updated with the PHP community and migrate to newer versions when necessary.

20. Benefits of Switching PHP Versions

Switching PHP versions with Laravel Valet offers several advantages, including:

21. Best Practices for PHP Version Switching

Follow these best practices when switching PHP versions:

22. Real-Life Experience: How PHP Version Switching Helped My Project

I had been working on a Laravel project that required specific PHP extensions only available in PHP 7.4. However, my system was running PHP 7.3 by default. Thanks to Laravel Valet's easy PHP version switching, I seamlessly switched to PHP 7.4, allowing me to install the required extensions and continue my development without any hiccups. The process was simple and saved me a lot of time and effort.

Conclusion

Switching PHP versions with Laravel Valet is a straightforward process that empowers developers to work on various projects with different PHP requirements. By following the steps outlined in this guide, you can easily switch between PHP versions, ensuring optimal performance and compatibility for your Laravel projects. Remember to update and maintain your PHP versions regularly to stay secure and take advantage of the latest features.