Valet Pro Max is a development environment for macOS. No Vagrant, no Docker, no /etc/hosts
file. This project uses
laravel/valet as a dependency.
⚠️ Valet Pro Max requires macOS and Homebrew. Before installation, you should make sure that no other programs such as Apache or Nginx are binding to your local machine's port 80.
⚠️ Valet Pro Max requires Composer to be installed. It's NOT recommended to install Composer via Homebrew.
To get started, you first need to ensure that Homebrew is up-to-date using the update command:
brew update
Next, you should use Homebrew to install PHP 8.1 (using shivammathur/php
):
brew tap shivammathur/php
brew install shivammathur/php/[email protected]
brew link [email protected] --force
brew services restart [email protected]
⚠️ If you're switching from Valet+ 2.x use the extra following steps.
- Uninstall Valet+ with
valet uninstall
first.- Remove Valet+ package with
composer global remove weprovide/valet-plus
.- For more information how to migrate from Valet+ - check this documentation
Install Valet Pro Max 1.x-dev with composer:
composer global require nntoan/valet-pro-max:1.x-dev
Finally, you may execute the Valet Pro Max install
command. This will configure and install Valet Pro Max, Nginx, DnsMasq and other
services. In addition, use --help
to see all installation options.
valet-pro install
The daemons Valet Pro Max depends on will be configured to launch when your system starts. Once Valet Pro Max is installed, try pinging
any *.test
domain on your terminal using a command such as ping foobar.test
. If Valet Pro Max is installed correctly you
should see this domain responding on 127.0.0.1
.
Here are a few key differences compared to the original Valet:
- Nginx config optimization
- PHP extensions (
mcrypt,intl,opcache, yaml, apcu, ds, imagick) - MySQL ([email protected], [email protected], [email protected], mariadb)
- DB commands (list, create, drop, reset, (re)import, export,
open)
- DB commands (list, create, drop, reset, (re)import, export,
- Mailhog (on/off mode)
- Varnish (on/off mode)
- Redis (on/off mode)
- Rabbitmq (on/off mode)
- Xdebug (on/off mode)
- Memcache (on/off mode)
- Elasticsearch v6, v7, v8 (on/off mode) using Docker
- Opensearch v1, v2 (on/off mode) using Homebrew
- Ioncube (on/off mode)
- Rewrite/unrewrite public domain to local environment
DevTools- Binaries (magerun, magerun2, drush, wp-cli, shopware-cli, shopify-cli)
- Log rotation for Valet Pro Max services (nginx, mysql, phpfpm). To prevent big logfiles consume all disk storage.
- Use command
valet-pro
instead ofvalet
. - Rename
.env.valet
to.valet-env.php
. - Use command
valet-pro elasticsearch|es use <version>
instead ofvalet use elasticsearch|es <version>
. - Use
127.0.0.1
as Redis host instead of/tmp/redis.sock
. - Choose which binaries to install (default all) and self-update on
valet-pro install
command. - Adds dependency on Docker for Elasticsearch, see https://docs.docker.com/desktop/install/mac-install/
- Supports Opensearch using Homebrew maintainer tap.
This project is a fork of weprovide/valet-plus. Thanks to all of the contributors, especially the original authors:
- Tim Neutkens (@timneutkens)
- Sam Granger (@samgranger)
- Lou van der Laarse (@Neodork)
- Sander Pott (@Sander Valet+ slack channel)
- Mischa Braam (@mischabraam)