File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 11/vendor
22.vagrant /
33.idea /
4+ ubuntu- * .log
Original file line number Diff line number Diff line change @@ -63,8 +63,7 @@ I'm happy about every **pull request** or **issue** you find and open to help
6363making this API ** more awesome** .
6464
6565You can use [ Vagrant] ( https://vagrantup.com ) to kick-start your development.
66- Simply run ` vagrant up ` , ` vagrant ssh ` and ` cd ` into ` /vagrant ` to start
67- developing.
66+ Simply run ` vagrant up ` and ` vagrant ssh ` to start a PHP VM.
6867
6968License
7069=======
Original file line number Diff line number Diff line change 22# vi: set ft=ruby :
33
44Vagrant . configure ( 2 ) do |config |
5- config . vm . box = "ubuntu/trusty64 "
5+ config . vm . box = "ubuntu/xenial64 "
66
77 config . vm . provision "shell" , inline : <<-SHELL
8- sudo apt-get update
9- sudo apt-get install -y php5- cli php5 -curl
8+ apt-get -y -qq update
9+ apt-get -y -qq install php- cli php -curl php-xml
1010
11- sudo curl --silent https://getcomposer.org/installer | php > /dev/null 2>&1
12- sudo mv composer.phar /usr/local/bin/composer
11+ curl --silent https://getcomposer.org/installer | php > /dev/null 2>&1
12+ mv composer.phar /usr/local/bin/composer
13+ echo "cd /vagrant" >> /home/ubuntu/.bashrc
1314 SHELL
1415end
You can’t perform that action at this time.
0 commit comments