Business-Cart-Generic
view release on metacpan or search on metacpan
File::HomeDir => 0.97,
FindBin => 1.50,
IO::File => 1.14,
JSON::XS => 2.3,
Log::Handler::Output::DBI => 0.11,
Moose => 0.98,
namespace::autoclean => 0.09,
parent => 0.224,
Path::Class => 0.23,
Perl6::Slurp => 0.03,
Try::Tiny => 0.09,
Text::CSV_XS => 0.80,
Text::Xslate => 1.0007,
WWW::Scraper::Wikipedia::ISO3166::Database => 1.01,
},
) -> create_build_script();
"File::HomeDir" : "0.97",
"FindBin" : "1.5",
"IO::File" : "1.14",
"JSON::XS" : "2.3",
"Log::Handler::Output::DBI" : "0.11",
"Moose" : "0.98",
"Path::Class" : "0.23",
"Perl6::Slurp" : "0.03",
"Text::CSV_XS" : "0.8",
"Text::Xslate" : "1.0007",
"Try::Tiny" : "0.09",
"WWW::Scraper::Wikipedia::ISO3166::Database" : "1.01",
"namespace::autoclean" : "0.09",
"parent" : "0.224"
}
}
},
"provides" : {
"Business::Cart::Generic" : {
"file" : "lib/Business/Cart/Generic.pm",
"version" : "0.85"
File::HomeDir: 0.97
FindBin: 1.5
IO::File: 1.14
JSON::XS: 2.3
Log::Handler::Output::DBI: 0.11
Moose: 0.98
Path::Class: 0.23
Perl6::Slurp: 0.03
Text::CSV_XS: 0.8
Text::Xslate: 1.0007
Try::Tiny: 0.09
WWW::Scraper::Wikipedia::ISO3166::Database: 1.01
namespace::autoclean: 0.09
parent: 0.224
resources:
license: http://opensource.org/licenses/artistic-license.php
version: 0.85
Makefile.PL view on Meta::CPAN
File::HomeDir => 0.97,
FindBin => 1.50,
IO::File => 1.14,
JSON::XS => 2.3,
Log::Handler::Output::DBI => 0.11,
Moose => 0.98,
namespace::autoclean => 0.09,
parent => 0.224,
Path::Class => 0.23,
Perl6::Slurp => 0.03,
Try::Tiny => 0.09,
Test::More => 0.94,
Test::Pod => 1.44,
Text::CSV_XS => 0.80,
Text::Xslate => 1.0007,
WWW::Scraper::Wikipedia::ISO3166::Database => 1.01,
},
VERSION_FROM => 'lib/Business/Cart/Generic.pm',
);
lib/Business/Cart/Generic/Controller/Order.pm view on Meta::CPAN
package Business::Cart::Generic::Controller::Order;
use parent 'Business::Cart::Generic::Controller';
use strict;
use warnings;
use Business::Cart::Generic::Util::Validator;
use Try::Tiny;
# We don't use Moose because we isa CGI::Application.
our $VERSION = '0.85';
# -----------------------------------------------
sub add_to_cart
{
my($self) = @_;
lib/Business/Cart/Generic/Database/Create.pm view on Meta::CPAN
package Business::Cart::Generic::Database::Create;
use strict;
use warnings;
use DBIx::Admin::CreateTable;
use Moose;
use Try::Tiny;
extends 'Business::Cart::Generic::Base';
has creator =>
(
is => 'rw',
isa => 'DBIx::Admin::CreateTable',
required => 0,
);
lib/Business/Cart/Generic/Database/Import.pm view on Meta::CPAN
use IO::File;
use Moose;
use Perl6::Slurp;
use Text::CSV_XS;
use Text::Xslate;
use Try::Tiny;
use WWW::Scraper::Wikipedia::ISO3166::Database;
extends 'Business::Cart::Generic::Database::Base';
has country_map =>
(
default => sub{return build_country_map()},
is => 'rw',
isa => 'HashRef',
lib/Business/Cart/Generic/Database/Loader.pm view on Meta::CPAN
use IO::File;
use Moose;
use Perl6::Slurp;
use Text::CSV_XS;
use Text::Xslate;
use Try::Tiny;
extends 'Business::Cart::Generic::Database::Base';
use namespace::autoclean;
our $VERSION = '0.85';
# -----------------------------------------------
sub BUILD
( run in 0.967 second using v1.01-cache-2.11-cpan-05444aca049 )