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 |