Skip to content

Commit

Permalink
tidying and separate out the test pre-req so maybe stupid deps will g…
Browse files Browse the repository at this point in the history
…et resolved properly
  • Loading branch information
DrHyde committed Oct 3, 2021
1 parent d6f1915 commit d808450
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Tie::Scalar::Decay',
LICENSE => 'perl_5',
NAME => 'Tie::Scalar::Decay',
LICENSE => 'perl_5',
META_MERGE => {
resources => {
repository => 'https://github.com/DrHyde/perl-modules-Tie-Scalar-Decay',
bugtracker => 'https://github.com/DrHyde/perl-modules-Tie-Scalar-Decay/issues'
repository => 'https://github.com/DrHyde/perl-modules-Tie-Scalar-Decay',
bugtracker => 'https://github.com/DrHyde/perl-modules-Tie-Scalar-Decay/issues'
}
},
VERSION => '1.1.1',
PREREQ_PM => {
Time::HiRes => 1.2,
Test::Mock::Time => 0,
}
);
VERSION => '1.1.1',
PREREQ_PM => {
Time::HiRes => 1.2,
},
TEST_REQUIRES => {
Test::Mock::Time => 0,
}
);

0 comments on commit d808450

Please sign in to comment.