We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea06037 commit 76b8a71Copy full SHA for 76b8a71
.gitignore
@@ -1 +1,3 @@
1
/vendor
2
+.vagrant/
3
+.idea/
Vagrantfile
@@ -0,0 +1,14 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
4
+Vagrant.configure(2) do |config|
5
+ config.vm.box = "ubuntu/trusty64"
6
7
+ config.vm.provision "shell", inline: <<-SHELL
8
+ sudo apt-get update
9
+ sudo apt-get install -y php5-cli
10
11
+ sudo curl --silent https://getcomposer.org/installer | php > /dev/null 2>&1
12
+ sudo mv composer.phar /usr/local/bin/composer
13
+ SHELL
14
+end
0 commit comments