2013-12-07 05:43:37 +00:00
|
|
|
# [Composer](http://getcomposer.org/)
|
|
|
|
|
2013-12-07 14:36:03 +00:00
|
|
|
Compatible with probably any type of linux guest distro, will cache guests'
|
2014-07-21 02:02:04 +00:00
|
|
|
`$HOME/.composer/cache` if PHP is detected.
|
2013-12-07 14:36:03 +00:00
|
|
|
|
|
|
|
To manually enable it:
|
|
|
|
|
2013-12-07 05:43:37 +00:00
|
|
|
```ruby
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
config.vm.box = 'some-box-with-php-installed'
|
|
|
|
config.cache.enable :composer
|
|
|
|
end
|
|
|
|
```
|