1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 00:20:08 +01:00

Add extra info output to phpfpm install method

This commit is contained in:
Matt Stauffer
2022-04-18 13:38:16 -04:00
parent 47759b2406
commit 3772761881
2 changed files with 3 additions and 1 deletions

View File

@@ -46,6 +46,8 @@ public function __construct(Brew $brew, CommandLine $cli, Filesystem $files, Con
*/
public function install()
{
info('Installing and configuring phpfpm...');
if (! $this->brew->hasInstalledPhp()) {
$this->brew->ensureInstalled('php', [], $this->taps);
}

View File

@@ -34,7 +34,7 @@
*/
Container::setInstance(new Container);
$version = '3.1.5';
$version = '3.1.6';
$app = new Application('Laravel Valet', $version);