The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;

package Software::License::VaporWare;
our $VERSION = '0.001';

use Software::License;
our @ISA = qw/Software::License/;

sub name      { 'VaporWare License' }
sub url       { 'http://example.com/vaporware/' }
sub meta_name { 'unrestricted' }
sub meta2_name { 'unrestricted' }

1;