NAME Carton - Perl module dependency manager (aka Bundler for Perl) SYNOPSIS # On your development environment > cat Makefile.PL use inc::Module::Install; name 'MyApp'; version '1.0'; requires 'Plack', 0.9980; requires 'Starman', 0.2000; WriteAll; > carton install > git add Makefile.PL carton.lock > git commit -m "add Plack and Starman" # Other developer's machine, or on a deployment box > carton