1# Copyright 2012 Jeffrey Kegler
2# This file is part of Marpa::PP.  Marpa::PP is free software: you can
3# redistribute it and/or modify it under the terms of the GNU Lesser
4# General Public License as published by the Free Software Foundation,
5# either version 3 of the License, or (at your option) any later version.
6#
7# Marpa::PP is distributed in the hope that it will be useful,
8# but WITHOUT ANY WARRANTY; without even the implied warranty of
9# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10# Lesser General Public License for more details.
11#
12# You should have received a copy of the GNU Lesser
13# General Public License along with Marpa::PP.  If not, see
14# http://www.gnu.org/licenses/.
15
16# This file is editable.  It is used during the
17# configuration process to set up version information.
18
19package Marpa::PP;
20
21use 5.010;
22use strict;
23use warnings;
24
25%Marpa::PP::VERSION_FOR_CONFIG = (
26    'Scalar::Util'  => 1.21,
27    'List::Util'    => 1.21,
28    'Carp'          => 1.08,
29    'Data::Dumper'  => '2.125',
30    'Storable'      => 2.21,
31    'PPI'           => '1.206',
32    'Test::Weaken'  => '3.004000',
33    'Task::Weaken'  => '0',
34    'Module::Build' => 0.3601,
35    'Test::More'    => 0.94,
36);
37
381;
39