2016 06 18 Vagrant: 安装 PHP 7 镜像 - huyx/1 GitHub Wiki

安装镜像

vagrant init michaelward82/trusty64-php7
vagrant up
vagrant ssh

更新软件

apt-get update

安装 Composer: 安装 getcomposer.org 上的文档操作

安装 phpMyAdmin,安装后无法打开,查看日志文件发现 mbstring 扩展没有安装

apt-get install php7.0-mbstring

安装后重新加载 apache2

/etc/init.d/apache2 reload