summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: e183799152fb29402aa844ec85f5e52b96025399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use inc::Module::Install;
 
name     'PPIx-XPath';
license  'perl';
all_from 'lib/PPIx/XPath.pm';
 
requires 'Tree::XPathEngine' => 0,
         'PPI'               => '1.2',
         'perl'              => '5.6.0',
;
 
test_requires 'Test::Most'   => 0,
;
 
WriteAll;