PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Michael Cummings   Encryption Helper   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Encryption Helper
Encrypt and decrypt of GET query lists
Author: By
Last change: Updated composer.json for the tagging of version 1.0.0 and switching to 1.* development cycle.
Added branch alias and replace info to composer.json.
Added branch alias and replace info to composer.json.
Updated composer.json to show OpenSSL extension instead of mcrypt is required.
Updated allowed PHP version in composer do to deprecated message for version 7.1 on mcrypt_get_iv_size() until I can get it sorted.
Date: 7 years ago
Size: 1,112 bytes
 

Contents

Class file image Download
{ "name": "dragonrun1/encryption-helper", "description": "Use to help with the encryption and decryption of GET queries", "type": "library", "license": "GPL-2.0", "authors": [ { "name": "Michael Cummings", "email": "mgcummings@yahoo.com", "role": "Developer" } ], "autoload": { "psr-4": { "EncryptionHelper\\": [ "src/" ] } }, "autoload-dev": { "psr-0": { "Spec\\EncryptionHelper\\": [ "specs/" ] } }, "config": { "optimize-autoloader": true }, "extra": { "branch-alias": { "dev-master": "1.*-dev" } }, "minimum-stability": "stable", "replace": { "dragonrun1/encryption-helper": "1.*-dev" }, "require": { "ext-openssl": "*", "php": ">7.0,<7.2" }, "require-dev": { "henrikbjorn/phpspec-code-coverage": "~3.0.1", "phpspec/nyan-formatters": "~2.0.0", "phpspec/phpspec": "~3.0.0" } }