laravel 5.5 環境において、php 7.1.33 から php 7.2.9 にあげたところ、初期画面で**“could not find driver”**が出て正常に起動しなくなってしまった。

それの対処。

追記修正しました!

blog.azimicat.com

以下元の記事


$ sudo composer update // composerを最新にする  
$ git -C "$(brew --repo homebrew/core)" fetch --unshallow // 最新にする際に指摘されたコマンドを実行  
$ brew install php@7.2 // 必要なphpバージョンを指定でインストール

パスの登録

$ echo 'export PATH="/usr/local/opt/php@7.2/bin:$PATH"' >> /Users/[user_name]/.bash_profile
$ brew services start php@7.2 // 起動&自動起動を設定

これで起動できました!