Vagrant-LAMP-Stack
Vagrant-LAMP-Stack copied to clipboard
PHP cookbook fails on FFI gem dependency
The latest version of the PHP cookbook, v1.3.1, now includes support for Windows, which causes Vagrant-LAMP-Stack setup to fail when provisioned. It is due to the following cookbook dependency chain: PHP -> Windows -> IIS -> ffi
Provisioning fails on the missing FFI gem. This can be resolved by requiring PHP v1.2.6 in the Berksfile or by ensuring the ffi gem is installed before hand.
# Berksfile
cookbook "php", "~> 1.2.6"