mirror of
https://github.com/danog/parallel.git
synced 2024-11-30 04:39:01 +01:00
9 lines
218 B
Ruby
9 lines
218 B
Ruby
Vagrant.configure(2) do |config|
|
|
config.vm.box = "coderstephen/php-dev"
|
|
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
newphp 56 zts
|
|
sudo pickle install -n --ini=/etc/php56/php-cli.ini pthreads
|
|
SHELL
|
|
end
|