1. Go to this page and download the library: Download stolt/skill-md library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$skillName = $skillMd->name();
$skillDescription = $skillMd->description();
$skillBody = $skillMd->body();
$skillVersion = $skillMd->version();
$skillTags = $skillMd->tags();
$skillLicense = $skillMd->get('license');
if ($skill->has('unsupported-field') === false) {
echo 'This field is not supported.';
}
if ($skill->get('unsupported-field') === null) {
echo 'This field is not supported and has no value.';
}