File Coverage

blib/lib/Software/License/MIT_0.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod 6 6 100.0
total 33 33 100.0


line stmt bran cond sub pod time code
1             package Software::License::MIT_0;
2              
3 2     2   387252 use v5.12.0;
  2         6  
4              
5 2     2   10 use strict;
  2         2  
  2         42  
6 2     2   6 use warnings;
  2         2  
  2         119  
7              
8 2     2   8 use parent qw< Software::License >;
  2         4  
  2         20  
9              
10             our $VERSION = 'v1.0.0';
11              
12 4     4 1 190830 sub name { 'MIT No Attribution License' }
13 1     1 1 3 sub url { 'https://raw.githubusercontent.com/aws/mit-0/feadea429356d82c9bc82cce0c76894892683c3b/MIT-0' }
14 1     1 1 1179 sub version { undef }
15 1     1 1 4 sub meta_name { 'open_source' }
16 1     1 1 4 sub meta2_name { 'open_source' }
17 1     1 1 3 sub spdx_expression { 'MIT-0' }
18              
19             =encoding UTF-8
20              
21             =for highlighter language=perl
22              
23             =head1 NAME
24              
25             Software::License::MIT_0 - MIT No Attribution License (MIT-0)
26              
27             =head1 SYNOPSIS
28              
29             use Software::License::MIT_0;
30              
31             my $license = Software::License::MIT_0->new(
32             {
33             holder => 'COPYRIGHT HOLDER',
34             }
35             );
36              
37             print $license->license;
38              
39             =head1 DESCRIPTION
40              
41             This module is a L subclass implementation of the MIT No Attribution
42             License. The "MIT No Attribution" or "MIT-0" license is a variant of the permissive
43             MIT license that removes the requirement for attribution.
44              
45             =head1 BUGS
46              
47             Report bugs at L.
48              
49             =head1 AUTHOR
50              
51             ryoskzypu
52              
53             =head1 SEE ALSO
54              
55             =over 4
56              
57             =item *
58              
59             L
60              
61             =item *
62              
63             L
64              
65             =item *
66              
67             L
68              
69             =item *
70              
71             L
72              
73             =back
74              
75             =head1 COPYRIGHT
76              
77             Copyright © 2026 ryoskzypu
78              
79             MIT-0 License. See LICENSE for details.
80              
81             =cut
82              
83             1;
84              
85             __DATA__