The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Foo::Boondle;

sub mvp_bundle_config {
  return (
    [ 'boondle_1', 'Foo::Boo1', [ x => 1 ] ],
    [ 'boondle_2', 'Foo::Boo2', [ a => 0 ] ],
    [ 'boondle_B', 'Foo::Bar',  [ y => 1, y => 2, y => 3 ] ],
  );
}

1;