diff --git a/lib/SLUB/LZA/TA.pm b/lib/SLUB/LZA/TA.pm index 63d9191f92595825050858de9895cf411e5647ab..b5e66c350ddd9446cd1b4cb3ecfa9c9c81c5e7bd 100644 --- a/lib/SLUB/LZA/TA.pm +++ b/lib/SLUB/LZA/TA.pm @@ -1,18 +1,15 @@ package SLUB::LZA::TA; -use strict; -use warnings; +use v5.36; use Path::Tiny qw( path ); use YAML qw(LoadFile); use LWP::UserAgent; use SOAP::Lite; use Carp qw( croak ); -use feature qw(say); use Regexp::Optimizer; use IO::Zlib; use Text::CSV_PP; use SLUB::LZA::TA::Crypt; use namespace::clean; - use App::Cmd::Setup -app; diff --git a/lib/SLUB/LZA/TA/Command/count.pm b/lib/SLUB/LZA/TA/Command/count.pm index b3d9363daef2ebda2672c481c30e4503e2176cf1..e34a30718a914ee34d0cc8e6b65141826d07ba1c 100644 --- a/lib/SLUB/LZA/TA/Command/count.pm +++ b/lib/SLUB/LZA/TA/Command/count.pm @@ -1,8 +1,6 @@ package SLUB::LZA::TA::Command::count; use SLUB::LZA::TA -command; -use strict; -use warnings; -use feature qw(say); +use v5.36; use SLUB::LZA::TA::Archivematica::Elasticsearch; use SLUB::LZA::TA::Archivematica::Elasticsearch::PrepareQuery; use Data::Printer; diff --git a/lib/SLUB/LZA/TA/Command/info.pm b/lib/SLUB/LZA/TA/Command/info.pm index b494822b75897657e71b3eea264c9d21001f20fd..9ea60ce6491a869a5e0ab996bdb126be9084e5bd 100644 --- a/lib/SLUB/LZA/TA/Command/info.pm +++ b/lib/SLUB/LZA/TA/Command/info.pm @@ -1,8 +1,6 @@ package SLUB::LZA::TA::Command::info; use SLUB::LZA::TA -command; -use strict; -use warnings; -use feature qw(say); +use v5.36; use SLUB::LZA::TA::Archivematica::Elasticsearch; use namespace::autoclean; # VERSION diff --git a/lib/SLUB/LZA/TA/Command/init.pm b/lib/SLUB/LZA/TA/Command/init.pm index efc3cbe2507f7d047a13920a4b0dc0db9199a4aa..0063e5fb7773cee649bc75c89935e2bd528883bd 100644 --- a/lib/SLUB/LZA/TA/Command/init.pm +++ b/lib/SLUB/LZA/TA/Command/init.pm @@ -1,9 +1,7 @@ package SLUB::LZA::TA::Command::init; use SLUB::LZA::TA -command; -use strict; -use warnings; +use v5.36; use YAML qw(DumpFile); -use feature qw(say); use IO::Prompt::Tiny qw/prompt/; use Crypt::Mode::CBC; use Path::Tiny; diff --git a/lib/SLUB/LZA/TA/Crypt.pm b/lib/SLUB/LZA/TA/Crypt.pm index d51375f4e37065847017e7a339140dafe2689d79..837523581f7940d40d682a30a255fff5282839df 100644 --- a/lib/SLUB/LZA/TA/Crypt.pm +++ b/lib/SLUB/LZA/TA/Crypt.pm @@ -1,6 +1,5 @@ package SLUB::LZA::TA::Crypt; -use strict; -use warnings; +use v5.36; use Crypt::Mode::CBC; use namespace::autoclean;