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