[AmazonLinux] yumでPHP 7.1をインストール

amzn-mainリポジトリを明示的にdisableする必要があったり、CentOSにインストールする時と比べると手間がかかります。

yum install http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

# 必要なライブラリ群
yum -y install libwebp --disablerepo=amzn-main --enablerepo=epel
yum -y install libmcrypt libtool-ltdl libtidy libXpm libtiff gd-last autoconf automake

# phpインストール
yum -y install --disablerepo=amzn-main --enablerepo=remi-php71 php php-devel...