Use Data::Serializer, instead of hardcoding YAML. Allow the type of serializer
[catagits/Catalyst-Engine-STOMP.git] / Makefile.PL
1 use inc::Module::Install;
2 use 5.008006;
3   
4 license  'perl';
5
6 name     'Catalyst-Engine-Stomp';
7 all_from 'lib/Catalyst/Engine/Stomp.pm';
8   
9 requires 'Catalyst::Engine::Embeddable'  => '0.0.1';
10 requires 'Catalyst::Runtime'  => '5.80004';
11 requires 'Moose' => undef;
12 requires 'MooseX::Workers' => '0.05';
13 requires 'Net::Stomp' => '0.34';  
14 requires 'YAML::XS' => '0.32';
15 requires 'Data::Serializer' => '0.49';
16 requires 'namespace::autoclean' => '0.05';
17
18 test_requires 'Alien::ActiveMQ' => '0.00003';
19
20 no_index package => 'StompTestApp';
21 no_index package => 'StompTestApp::Controller::TestController';
22 no_index package => 'StompTestApp::Controller::TestJsonController';
23
24 auto_install;
25 WriteAll;
26