setasign/composer-ioncube-license-installer

Installer plugin for ioncube licenses

v1.1.1 2020-09-14 08:33 UTC

This package is auto-updated.

Last update: 2024-04-14 16:25:08 UTC


README

Latest Stable Version

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