Koha-Contrib-Mirabel

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  version: '1.4'
name: Koha-Contrib-Mirabel
requires:
  DateTime: '0'
  FindBin: '0'
  Getopt::Long: '0'
  LWP::Simple: '0'
  List::Util: '0'
  MARC::Moose::Field::Std: '0'
  MARC::Moose::Record: '0'
  Modern::Perl: '0'
  Moose: '0'
  XML::Simple: '0'
  YAML: '0'
  utf8: '0'
resources:
  repository: https://github.com/fredericd/Koha-Contrib-Mirabel
version: 1.0.2

Makefile.PL  view on Meta::CPAN

  "LICENSE" => "perl",
  "NAME" => "Koha::Contrib::Mirabel",
  "PREREQ_PM" => {
    "DateTime" => 0,
    "FindBin" => 0,
    "Getopt::Long" => 0,
    "LWP::Simple" => 0,
    "List::Util" => 0,
    "MARC::Moose::Field::Std" => 0,
    "MARC::Moose::Record" => 0,
    "Modern::Perl" => 0,
    "Moose" => 0,
    "XML::Simple" => 0,
    "YAML" => 0,
    "utf8" => 0
  },
  "VERSION" => "1.0.2",
  "test" => {
    "TESTS" => ""
  }
);


my %FallbackPrereqs = (
  "DateTime" => 0,
  "FindBin" => 0,
  "Getopt::Long" => 0,
  "LWP::Simple" => 0,
  "List::Util" => 0,
  "MARC::Moose::Field::Std" => 0,
  "MARC::Moose::Record" => 0,
  "Modern::Perl" => 0,
  "Moose" => 0,
  "XML::Simple" => 0,
  "YAML" => 0,
  "utf8" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};

bin/koha-mirabel  view on Meta::CPAN

#!/usr/bin/perl


package Main;
$Main::VERSION = '1.0.2';
use Modern::Perl;
use Koha::Contrib::Mirabel;
use Getopt::Long;


binmode(STDOUT, ':encoding(utf8)');

my ($doit, $verbose) = (0, 1);
GetOptions( 
    'doit'     => \$doit,
    'verbose!' => \$verbose,

lib/Koha/Contrib/Mirabel.pm  view on Meta::CPAN

package Koha::Contrib::Mirabel;
$Koha::Contrib::Mirabel::VERSION = '1.0.2';
# ABSTRACT: Synchronise un catalogue Koha avec Mir@bel
use Moose;

use Modern::Perl;
use utf8;
use FindBin qw($Bin);
use List::Util qw/first/;
use YAML qw/LoadFile Dump/;
use XML::Simple;
use LWP::Simple;
use DateTime;
use C4::Biblio;
use MARC::Moose::Record;
use MARC::Moose::Field::Std;



( run in 0.425 second using v1.01-cache-2.11-cpan-4d50c553e7e )