unikent / lib-php-classmark
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
Requires
- php: >=5.3
Requires (Dev)
This package is not auto-updated.
Last update: 2025-10-12 01:37:03 UTC
README
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!";
}