unikent/lib-php-classmark

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

Classmark helpers for PHP.

Installs: 777

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 1

Open Issues: 1

pkg:composer/unikent/lib-php-classmark

1.2 2017-09-28 13:36 UTC

This package is not auto-updated.

Last update: 2025-10-12 01:37:03 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!";
}