til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Use cpanfile

The cpanfile is a file that contains a list of dependencies for a given Perl project. It is placed in the root and it can used by tools like cpanm, carton, dzil to install the dependencies.

Description Format Example
Specified version == version == 0.03
Specified version or greater >= version >= 0.03
Specified version or below <= version <= 0.03
Greater than specified version > version > 0.03
Below specified version < version < 0.03

Resources and References