Install the latest version with:
$ composer require composer/spdx-licenses
<?php use Composer\Spdx\SpdxLicenses; $licenses = new SpdxLicenses(); // get a license by identifier $licenses->getLicenseByIdentifier('MIT'); // get a license exception by identifier $licenses->getExceptionByIdentifier('Autoconf-exception-3.0'); // get a license identifier by name $licenses->getIdentifierByName('MIT License'); // check if a license is OSI approved by identifier $licenses->isOsiApprovedByIdentifier('MIT'); // check if input is a valid SPDX license expression $licenses->validate($input);
Read the specifications to find out more about valid license expressions.
composer/spdx-licenses is licensed under the MIT License, see the LICENSE file for details.
License information taken from spdx.org.