https://github.com/setasign/composerioncubelicenseinstaller
Composer installer plugin for ioncube licenses
https://github.com/setasign/composerioncubelicenseinstaller
composer-plugin ioncube ioncube-php php
Last synced: 16 days ago
JSON representation
Composer installer plugin for ioncube licenses
- Host: GitHub
- URL: https://github.com/setasign/composerioncubelicenseinstaller
- Owner: Setasign
- License: mit
- Created: 2019-12-18T09:53:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-11T10:35:40.000Z (6 months ago)
- Last Synced: 2025-04-11T21:08:54.109Z (18 days ago)
- Topics: composer-plugin, ioncube, ioncube-php, php
- Language: PHP
- Homepage:
- Size: 16.6 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Composer Ioncube License Installer
[](https://packagist.org/packages/setasign/composer-ioncube-license-installer)
The composer ioncube license installer is a plugin for [composer](https://getcomposer.org/) to automatically install [ioncube](https://www.ioncube.com/) licenses into a related composer package.
## How does it work?
The license has to be a standalone composer package similar to this:
```composer
{
"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