PHPackages                             clickalicious/install - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. clickalicious/install

ActiveProject

clickalicious/install
=====================

Installer for installing binary-, phar-, shell- or batch-files from local or remote source.

262[2 issues](https://github.com/clickalicious/install/issues)PHP

Since Feb 12Pushed 9y ago1 watchersCompare

[ Source](https://github.com/clickalicious/install)[ Packagist](https://packagist.org/packages/clickalicious/install)[ RSS](/packages/clickalicious-install/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![](https://avatars0.githubusercontent.com/u/26927954?v=3&s=140)](https://avatars0.githubusercontent.com/u/26927954?v=3&s=140)

---

[![Logo of Install](docs/logo-large.png)](docs/logo-large.png)

The deployment **installer** for binaries, phar's or shell and batch scripts.

[![Build Status](https://camo.githubusercontent.com/f94c5ac4a4ef970cd74ab020cec7ea90347c0a66b717aeaf5e4d380fa2b4a446/68747470733a2f2f7472617669732d63692e6f72672f636c69636b616c6963696f75732f526e672e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/clickalicious/Rng)[![Scrutinizer](https://camo.githubusercontent.com/1799393f4c60f315722192d581ad6c56d3bcbc84c7b10ef21af6c7f7611acfd4/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f636c69636b616c6963696f75732f526e672e737667)](https://scrutinizer-ci.com/g/clickalicious/Rng/)[![Code Coverage](https://camo.githubusercontent.com/ded8038a2f9820939b1b99ec75562f824043e05f7b4f03b58e38b8d3c02b6115/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f636c69636b616c6963696f75732f526e672f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/clickalicious/Rng/?branch=master)[![clickalicious open source](https://camo.githubusercontent.com/c244587ebb73cb5386d137729f3bb3348c448eef1782b945b6d03f4f5b5361c2/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636c69636b616c6963696f75732d6f70656e2d2d736f757263652d677265656e2e7376673f7374796c653d666c6174)](https://www.clickalicious.de/)[![GitHub release](https://camo.githubusercontent.com/ccae7096227360f883f9b1156045a9518a3daa953ccf7546780162531824e5ed/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f636c69636b616c6963696f75732f526e672e7376673f7374796c653d666c6174)](https://github.com/clickalicious/Rng/releases)[![Waffle.io](https://camo.githubusercontent.com/7848ae95e87d50b980eba312c68222b788b2afe1002d369782c2d13c73e91ee0/68747470733a2f2f696d672e736869656c64732e696f2f776166666c652f6c6162656c2f636c69636b616c6963696f75732f526e672f696e25323070726f67726573732e737667)](https://waffle.io/clickalicious/Rng)[![SensioLabsInsight](https://camo.githubusercontent.com/88f4f6d2fa675f40a1f7e4cfad9eff211d7f22ba224cae20bb00cd8873a78e7a/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f32396431663437612d306465622d343766302d393634322d3637316265626230343739352f6d696e692e706e67)](https://insight.sensiolabs.com/projects/29d1f47a-0deb-47f0-9642-671bebb04795)[![Packagist](https://camo.githubusercontent.com/37378e9bfb70b6b249cf37bc108e41cebfe26d53c79630d5ecf78437cf5b8b0f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f636c69636b616c6963696f75732f43616368696e674d6964646c65776172652e7376673f7374796c653d666c6174)](https://opensource.org/licenses/BSD-3-Clause)Table of Contents
-----------------

[](#table-of-contents)

- [Features](#features)
- [Example](#example)
- [Requirements](#requirements)
- [Philosophy](#philosophy)
- [Versioning](#versioning)
- [Roadmap](#roadmap)
- [Security-Issues](#security-issues)
- [License »](LICENSE)

Features
--------

[](#features)

- High performance (developed using a profiler)
- Lightweight and high-quality codebase (following PSR standards e.g. `PSR-0,1,4`)
- Secure `PRNG` implementation (64-Bit support)
- OOP facade to PHP core functionality
- PHP 7.0 &amp; HHVM ready
- Stable, clean + well documented code
- Unit-tested with a good coverage

Example
-------

[](#example)

Generate random number between 1 and 10 with `OpenSSL` random bytes (library default):

```
$generator = new Clickalicious\Rng\Generator();
$number    = $generator->generate(1, 10);
echo $number;
```

Generate random number between 1 and 10 with `MCrypt` random bytes:

```
$generator = new Clickalicious\Rng\Generator(Clickalicious\Rng\Generator::MODE_MCRYPT);
$number    = $generator->generate(1, 10);
echo $number;
```

### Visualization

[](#visualization)

You can create a visualization of randomization (as you can see below but larger size) through `Visual.php` (the file is located in root).

[![Logo of Rng](docs/visualization.png)](docs/visualization.png)

Requirements
------------

[](#requirements)

- `PHP >= 5.4` (compatible up to version 5.6 as well as 7.x and HHVM)

Philosophy
----------

[](#philosophy)

This library provides a state of the art `PRNG` (**P**seudo **R**andom **N**umber **G**enerator) implementation to generate secure `Pseudo Random Numbers` with PHP. The generation is either based on `Open SSL` or `MCrypt` or as fallback on PHP's internal functionality. The library also provides a very good `Seed generator` on puplic API. If you are interested in the difference between real and pseduo randomness then you could start at [https://www.random.org/randomness/](https://www.random.org/randomness/ "https://www.random.org/randomness/").

[![Scott Adams](https://camo.githubusercontent.com/969342e84261172020e2862ffb1bd957a0d856e2019bfaf296668ad0417a19f0/68747470733a2f2f7170682e69732e71756f726163646e2e6e65742f6d61696e2d71696d672d31656234653031303531633965323836313166663965396265383462656635643f636f6e766572745f746f5f776562703d74727565)](http://dilbert.com/strip/2001-10-25 "Copyright Universal Uclick / Scott Adams")

Versioning
----------

[](#versioning)

For a consistent versioning i decided to make use of `Semantic Versioning 2.0.0` . Its easy to understand, very common and known from many other software projects.

Roadmap
-------

[](#roadmap)

- Target stable release `1.0.0`
- `>= 90%` test coverage
- Better visualization
- Integrate polyfill
- Security check through 3rd-Party (Please get in contact with me)

[![Throughput Graph](https://camo.githubusercontent.com/ee85620e2513879acdf7f6f5adaa53dcee62424bb2e8de1ac8b8539800540f44/68747470733a2f2f6772617068732e776166666c652e696f2f636c69636b616c6963696f75732f526e672f7468726f7567687075742e737667)](https://waffle.io/clickalicious/Rng/metrics)

Security Issues
---------------

[](#security-issues)

If you encounter a (potential) security issue don't hesitate to get in contact with us `opensource@clickalicious.de` before releasing it to the public. So i get a chance to prepare and release an update before the issue is getting shared. Thank you!

Participate &amp; Share
-----------------------

[](#participate--share)

... yeah. If you're a code monkey too - maybe we can build a force ;) If you would like to participate in either **Code**, **Comments**, **Documentation**, **Wiki**, **Bug-Reports**, **Unit-Tests**, **Bug-Fixes**, **Feedback** and/or **Critic** then please let me know as well! [![](https://camo.githubusercontent.com/2ae8719c2efbe82ef2938210c2dc507fffdfa7a73a1d982a01e5b27f7269af52/687474703a2f2f6a70696c6c6f72612e636f6d2f6769746875622d747769747465722d627574746f6e2f696d672f74776565742e706e67)](https://twitter.com/intent/tweet?hashtags=&original_referer=http%3A%2F%2Fgithub.com%2F&text=Rng%20-%20Random%20number%20generator%20for%20PHP%20%40phpfluesterer%20%23Rng%20%23php%20https%3A%2F%2Fgithub.com%2Fclickalicious%2FRng&tw_p=tweetbutton)

Sponsors
--------

[](#sponsors)

Thanks to our sponsors and supporters:

JetBrainsNavicat[![](https://camo.githubusercontent.com/b0914f08f6b588c7178490d5faf4b159b5c9dd3378288c92812c76aff1936790/68747470733a2f2f7265736f75726365732e6a6574627261696e732e636f6d2f6173736574732f6d656469612f6f70656e2d67726170682f6a6574627261696e735f323530783235302e706e67)](https://www.jetbrains.com/phpstorm/ "PHP IDE :: JetBrains PhpStorm")[![](https://camo.githubusercontent.com/05c63082503800035599f1c0cfc7bf20806173061e03634107592d18d096e648/687474703a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f656e2f392f39302f5072656d69756d536f66745f4e6176696361745f5072656d69756d5f4c6f676f2e706e67)](http://www.navicat.com/ "Navicat GUI - DB GUI-Admin-Tool for MySQL, MariaDB, SQL Server, SQLite, Oracle & PostgreSQL")###### Copyright

[](#copyright)

Icons made by [Google](http://www.flaticon.com/authors/google "Google") from [www.flaticon.com](http://www.flaticon.com "Flaticon") is licensed by [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/ "Creative Commons BY 3.0")

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/41051d0345550be4293d3cdb46cf4eadce771501ed813d3f736e648027f76c0e?d=identicon)[clickalicious](/maintainers/clickalicious)

---

Tags

batchbinarycomposerdeploydownloaddownloaderinstallinstallerinstallerspharphpshshell

### Embed Badge

![Health badge](/badges/clickalicious-install/health.svg)

```
[![Health](https://phpackages.com/badges/clickalicious-install/health.svg)](https://phpackages.com/packages/clickalicious-install)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
