setasign / composer-ioncube-license-installer
Installer plugin for ioncube licenses
Installs: 6 859
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 1
Open Issues: 0
Type:composer-plugin
Requires
- php: ^5.4 || ^7.0 || ^8.0
- composer-plugin-api: ^2.0
README
The composer ioncube license installer is a plugin for composer to automatically install ioncube licenses into a related composer package.
How does it work?
The license has to be a standalone composer package similar to this:
{
"type":"ioncube-license",
"name":"your-vendor/your-encoded-package-license",
"license":"proprietary",
"require":{
"setasign/composer-ioncube-license-installer":"*"
},
"extra":{
"licenseValidFor":[
"your-vendor/your-encoded-package"
]
}
}
All license files have to be on the root level of this package and must have the extension ".icl".
The plugin will listen to the EventDispatcher of composer and if one of the packages from "licenseValidFor" is installed or updated it will copy all ".icl" files into the package directory.
License
ComposerIoncubeLicenseInstaller is licensed under the MIT License - see the LICENSE file for details