vagrant-cachier-ng/docs/buckets/composer.md
2013-12-07 12:36:03 -02:00

14 lines
309 B
Markdown

# [Composer](http://getcomposer.org/)
Compatible with probably any type of linux guest distro, will cache guests'
`$HOME/.composer` if PHP is detected.
To manually enable it:
```ruby
Vagrant.configure("2") do |config|
config.vm.box = 'some-box-with-php-installed'
config.cache.enable :composer
end
```