Algorithm-DependencySolver

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         }
      },
      "develop" : {
         "requires" : {
            "Test::CPAN::Changes" : "0.19",
            "Test::Pod" : "1.41"
         }
      },
      "runtime" : {
         "requires" : {
            "Data::Dumper" : "2.139",
            "Graph" : "0.94",
            "Graph::Convert" : "0.09",
            "Graph::Easy" : "0.72",
            "List::Compare" : "0.37",
            "List::MoreUtils" : "0.33",
            "Moose" : "2.0604",
            "MooseX::FollowPBP" : "0.05",
            "MooseX::Method::Signatures" : "0.44"
         }
      },

META.yml  view on Meta::CPAN

configure_requires:
  ExtUtils::MakeMaker: '6.30'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.016, CPAN::Meta::Converter version 2.141170'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Algorithm-DependencySolver
requires:
  Data::Dumper: '2.139'
  Graph: '0.94'
  Graph::Convert: '0.09'
  Graph::Easy: '0.72'
  List::Compare: '0.37'
  List::MoreUtils: '0.33'
  Moose: '2.0604'
  MooseX::FollowPBP: '0.05'
  MooseX::Method::Signatures: '0.44'
resources:
  repository: git://github.com/lokku/Algorithm-DependencySolver

Makefile.PL  view on Meta::CPAN

  "AUTHOR" => "Code by Colin Horne, Tests by Alex Balhatchet",
  "BUILD_REQUIRES" => {},
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Algorithm-DependencySolver",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Algorithm::DependencySolver",
  "PREREQ_PM" => {
    "Data::Dumper" => "2.139",
    "Graph" => "0.94",
    "Graph::Convert" => "0.09",
    "Graph::Easy" => "0.72",
    "List::Compare" => "0.37",
    "List::MoreUtils" => "0.33",
    "Moose" => "2.0604",
    "MooseX::FollowPBP" => "0.05",
    "MooseX::Method::Signatures" => "0.44"
  },
  "TEST_REQUIRES" => {

Makefile.PL  view on Meta::CPAN

    "Test::TempDir::Tiny" => "0.003"
  },
  "VERSION" => "1.01",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Data::Dumper" => "2.139",
  "File::Spec::Functions" => "3.00",
  "File::Type" => "0.22",
  "File::Which" => "1.09",
  "Graph" => "0.94",
  "Graph::Convert" => "0.09",
  "Graph::Easy" => "0.72",
  "List::Compare" => "0.37",
  "List::MoreUtils" => "0.33",
  "Moose" => "2.0604",
  "MooseX::FollowPBP" => "0.05",

dist.ini  view on Meta::CPAN

name                = Algorithm-DependencySolver
version             = 1.01
abstract            = Algorithm::DependencySolver - A dependency solver for scheduling access to a shared resource

author              = Code by Colin Horne, Tests by Alex Balhatchet
license             = Perl_5
copyright_holder    = Lokku Ltd.

[Prereqs / RuntimeRequires]
Data::Dumper                 = 2.139
Graph::Convert               = 0.09
Graph                        = 0.94
Graph::Easy                  = 0.72
List::Compare                = 0.37
List::MoreUtils              = 0.33
Moose                        = 2.0604
MooseX::FollowPBP            = 0.05
MooseX::Method::Signatures   = 0.44

[Prereqs / TestRequires]

lib/Algorithm/DependencySolver/Traversal.pm  view on Meta::CPAN

package Algorithm::DependencySolver::Traversal;
$Algorithm::DependencySolver::Traversal::VERSION = '1.01';
use Moose;
use MooseX::FollowPBP;
use MooseX::Method::Signatures;

use List::MoreUtils qw(all uniq);

use Data::Dumper;

=head1 NAME

Algorithm::DependencySolver::Traversal - A module for traversing a dependency graph

=head1 VERSION

version 1.01

=head1 SYNOPSIS



( run in 1.258 second using v1.01-cache-2.11-cpan-a5abf4f5562 )