Download the PHP package kerogs/kerogs-php without Composer
On this page you can find all versions of the php package kerogs/kerogs-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kerogs/kerogs-php
More information about kerogs/kerogs-php
Files in kerogs/kerogs-php
Package kerogs-php
Short Description Simple help library with many features inside.
License MPL-2.0
Informations about the package kerogs-php
KerogsPHP
Installation
How to use
To use the package, you first need to import the autoload.php file from the vendor folder.
Once you've done that, you can use only what you're interested in.
[!NOTE] Replace
[name]
with the name of what you want to use. You can refer to the list below.
List
[!NOTE] All requested encryption keys are in AES-256-CBC format
Kerogs\KerogsPhp\Key
The Key()
class is used to generate unique keys.
Example of use
When initializing a key, you must specify the type of character string you will use. This will be represented by a number.
Function list
function | description |
---|---|
keyGeneration(int $length): string |
Generates a random key based on the character set associated with the type of key. |
getCharacterSet(): string |
Gets the character set for the given type of key. |
Kerogs\KerogsPhp\Logs
You can easily create your own logs and, if required, encrypt them.
Example of use
In the example, we initialize the class by specifying a key (this key will be used to encrypt and decrypt the contents of the logs if required). We then indicate via a true
that we wish to encrypt the log file.
Then we simply add the logs.
[!IMPORTANT] The log key must be in 16-byte format, as in.
If we specify no path for the logs by indicating null
for the addLog() function, then a file will automatically be created at the server root and named kp_server.log
.
Also worth knowing:
- When the file is encrypted, it will appear under the name
[fileName].log.kpc
. - When the file is decrypted, it will appear as
[fileName].log
.
Function list
addLog()
Add a log entry to the file.
encryptDecryptFile()
Encrypt or decrypt a log file.
Kerogs\KerogsPhp\Sendmail
You can send your e-mails directly without rewriting the code.
Example of use
The default content type is text/HTML
Kerogs\KerogsPhp\Github
allows you to retrieve information from a GITHUB repository and compare versions.
Function list
function | description |
---|---|
Retrieves all repository info (JSON format) |
Retrieves all repository info (JSON format) |
getLatestRelease($owner, $repo, $onlyName = true) |
Retrieves only the name of the latest repository version (or all information on the latest release). |
compareVersions($versionActual, $versionLatest) |Compares 2 versions (not only works for GITHUB) (its format must be X/X.Y/X.Y.Z/X.Y.Z.F, if there is content after a “-” it will not be taken into account). (will return true if same version (if not, will return above or below the current version.)) |
Example of use
Kerogs\KerogsPhp\Algorithm
Allows you to manage an algorythm
Function list
function | description |
---|---|
similarityPercentage($str1, $str2) |
Returns the similarity percentage |
searchEngine(array $values, $query) |
Returns an array of values. Sort from most similar to least similar |