An open API service indexing awesome lists of open source software.

https://github.com/preaction/beam-wire-moose

Moose-specific enhancements for Beam::Wire
https://github.com/preaction/beam-wire-moose

Last synced: about 1 year ago
JSON representation

Moose-specific enhancements for Beam::Wire

Awesome Lists containing this project

README

          

=head1 SYNOPSIS

# container.yml
db:
class: My::Database
with:
- My::Role::Cache
- My::Role::Log
args:
dbh: { ref: dbh }
dbh:
class: DBI
args:
- 'dbi:sqlite:data.db'

=head1 DESCRIPTION

Beam::Wire::Moose is a subclass of Beam::Wire that adds support for Moose-specific
features.

=head1 SERVICE CONFIG

=head2 with

Compose roles into this object at run-time. This creates an anonymous class that
extends the C config and consumes the roles defined by C.

NOTE: This means the service is not an instance of C but an instance of
a class that inherits from C. Be cautious when using C and
C.

=head1 SEE ALSO

=over 4

=item L

=back