ticdenis / liccheck
PHP License Checker library
Installs: 4 160
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
pkg:composer/ticdenis/liccheck
This package has no released version yet, and little information is available.
README
liccheck is an PHP License Checker library thanks to composer licenses command output to check composer packages listed and report license issues.
Installation
Use the package manager composer to install liccheck.
composer require --dev ticdenis/liccheck
Usage
./vendor/bin/liccheck -s license_strategy.json
Here an example of a license_strategy.json file:
{
"Licenses": {
"authorized_licenses": [
"BSD-3-Clause",
"MIT"
],
"unauthorized_licenses": [
"propietary"
]
},
"Authorized Packages": [
"ticdenis/liccheck"
]
}
Requirements
- PHP +5.4
- Composer +1
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Based on dhatim/python-license-check.