The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Devel::REPL::Profile::Minimal;
BEGIN {
  $Devel::REPL::Profile::Minimal::AUTHORITY = 'cpan:PHAYLON';
}
$Devel::REPL::Profile::Minimal::VERSION = '1.003026';
use Moose;
use namespace::autoclean;

with 'Devel::REPL::Profile';

sub plugins {
  qw(History LexEnv DDS Packages Commands MultiLine::PPI);
}

sub apply_profile {
  my ($self, $repl) = @_;
  $repl->load_plugin($_) for $self->plugins;
}

1;