YAML::PP - Include other YAML Files
use YAML::PP;
use YAML::PP::Schema::Include;
my $include = YAML::PP::Schema::Include->new;
my $yp = YAML::PP->new( schema => ['+', $include ] );
# still needed to make the include object aware
# of the YAML::PP object
$include->yp($yp);