diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-11-28 06:44:50 +0000 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-11-28 06:45:10 +0000 |
commit | 76a2e92658251f8681d84b0319c1b0a947b7277b (patch) | |
tree | f34e659413e22038f08cb48aeea30be5da28b4f1 /contrib/vertobot/cpanfile | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-76a2e92658251f8681d84b0319c1b0a947b7277b.tar.xz |
a simple matrix->verto bot, distantly related to the irc bridge
Diffstat (limited to 'contrib/vertobot/cpanfile')
-rw-r--r-- | contrib/vertobot/cpanfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/vertobot/cpanfile b/contrib/vertobot/cpanfile new file mode 100644 index 0000000000..239258d4ac --- /dev/null +++ b/contrib/vertobot/cpanfile @@ -0,0 +1,17 @@ +requires 'parent', 0; +requires 'Future', '>= 0.29'; +requires 'Net::Async::Matrix', '>= 0.11'; +requires 'Net::Async::Matrix::Utils'; +requires 'Net::Async::WebSocket::Protocol', 0; +requires 'Data::UUID', 0; +requires 'IO::Async', '>= 0.63'; +requires 'IO::Async::SSL', 0; +requires 'IO::Socket::SSL', 0; +requires 'YAML', 0; +requires 'JSON', 0; +requires 'Getopt::Long', 0; + +on 'test' => sub { + requires 'Test::More', '>= 0.98'; +}; + |