jhnbrn90 / cas-validator
Parse and validate a given CAS number
dev-master
2022-10-22 20:32 UTC
Requires
- php: >=8.1
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-23 02:33:50 UTC
README
This PHP package allows easy parsing and validation of CAS numbers as dictated by the ACS.
Usage
To use this package, first require it:
composer require jhnbrn90/cas-validator
Validating a CAS number is performed as follows:
use Jhnbrn90\CasValidator\CasNumberValidator; $validatedCas = CasNumberValidator::validate('100-39-0'); // This will yield a `ValidCasNumber` or `InvalidCasNumber` DTO $isValid = $validatedCas->isValid(); // boolean