32
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

phpbrewでphpのバージョン管理をする(Mac向け)

Last updated at Posted at 2017-03-27

##事の発端
phpのバージョン管理にphpenvをいれようとしたところ、うまくいかなかった。
調べて見ると

rbenvにパッチをあててPHP用に修正するただのスクリプト。 ビルド機能はないので、通常php-buildをプラグインとして併せて使う。

とのことで、rbenvと環境変数が被っていたりするようだ。
そこでphpenvを諦め、phpbrewで管理することに。

##phpbrewインストール手順

$ curl -L -O https://github.com/phpbrew/phpbrew/raw/master/phpbrew
$ chmod +x phpbrew
$ mv phpbrew /usr/local/bin/phpbrew
$ phpbrew init

phpbrewはPATHの通ってるディレクトリに置く。
zshrcやbashrcに以下を追加する。

~/.zshrc
source $HOME/.phpbrew/zshrc

追記したらお決まりの、

source ~/.zshrc

##使い方

インストール可能なphpのバージョンを確認する

phpbrew known

インストール可能バージョンに最新が表示されていないとき

phpbrew update

指定バージョンのインストール

phpbrew install [バージョン] +default

インストールしたphpのバージョンを確認する

phpbrew list

一時的に使用するphpのバージョンの指定

phpbrew use [バージョン]

デフォルトで使用するphpのバージョンの指定

phpbrew switch [バージョン]

##参考

##最後に
便利な機能があれば教えてください!!!!

32
31
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
32
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?