We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce5e01 commit 8750898Copy full SHA for 8750898
Vagrantfile
@@ -25,7 +25,15 @@ Vagrant.configure("2") do |config|
25
add-apt-repository ppa:ondrej/php
26
SHELL
27
28
- config.vm.define "default" do |i|
+ config.vm.define "v8-5.8" do |i|
29
+ i.vm.provision "shell", inline: <<-SHELL
30
+ add-apt-repository ppa:pinepain/libv8-5.8
31
+ apt-get update
32
+ apt-get install -y php7.0-dev libv8-5.8-dbg libv8-5.8-dev
33
+ SHELL
34
+ end
35
+
36
+ config.vm.define "v8-5.7" do |i|
37
i.vm.provision "shell", inline: <<-SHELL
38
add-apt-repository ppa:pinepain/libv8-5.7
39
apt-get update
0 commit comments