The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Contributing

Contributors are very welcome!

Bug Fixes and Typos

For minor fixes, you can open an issue, but a pull request (with tests, if appropriate) is very welcome.

I do not accept patches. I've found them too much of a pain to apply.

New Features

If you would like a feature added, please open an issue first so we can discuss it.

Changes

Please add an entry to the Changes file for anything you do.

Non-backwards Compatible Features

Currently, MooseX::Extended allows configuration via import lists:

use MooseX::Extended
    types    => [qw/HashRef ArrayRef/],
    excludes => [qw/StrictConstructor/];

If you wish to extend MooseX::Extended, please use the C flag if the code:

For example:

use MooseX::Extended includes => [qw/multi/];