unikent/lib-php-classmark

There is no license information available for the latest version (1.2) of this package.

Classmark helpers for PHP.

1.2 2017-09-28 13:36 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:02:27 UTC


README

Latest Stable Version StyleCI

Full API docs available here: http://unikent.github.io/lib-php-classmark/

PHP library for helping developers with classmarks

Add this to your composer require:

  • "unikent/lib-php-classmark": "dev-master"

Then compare classmarks like so:

$parser = new \unikent\Classmark\Classmark();

$classmark = new \unikent\Classmark\Classmark("C900x");
$classmark2 = new \unikent\Classmark\Classmark("C800x");

if ($classmark.compareTo(classmark2)) {
    echo "Well done!";
}