All Projects → gladchinda → Keygen Php

gladchinda / Keygen Php

Licence: mit
A fluent PHP random key generator.

Projects that are alternatives of or similar to Keygen Php

Performance
⏱ PHP performance tool analyser your script on time, memory usage and db query. Support Laravel and Composer for web, web console and command line interfaces.
Stars: ✭ 429 (+361.29%)
Mutual labels:  composer, packagist
Randomix
🎲 An open source app to choose randomly between numbers, answers, options and so on.
Stars: ✭ 24 (-74.19%)
Mutual labels:  random, generator
Local Php Security Checker
PHP security vulnerabilities checker
Stars: ✭ 482 (+418.28%)
Mutual labels:  composer, packagist
Acf Pro Installer
A composer install helper for Advanced Custom Fields PRO
Stars: ✭ 265 (+184.95%)
Mutual labels:  composer, packagist
Randomdatagenerator
This is a configurable generator to create random data like Lorum Ipsum Text, Words, Text Patterns, First/Last Names, MAC-Addresses, IP-Addresses, Guids and DateTime.
Stars: ✭ 45 (-51.61%)
Mutual labels:  random, generator
Repman
Repman - PHP Repository Manager: packagist proxy and host for private packages
Stars: ✭ 277 (+197.85%)
Mutual labels:  composer, packagist
Awesome Composer
😎 A curated awesome list for Composer, Packagist, Satis, Plugins, Scripts, Composer related resources, tutorials.
Stars: ✭ 738 (+693.55%)
Mutual labels:  composer, packagist
crook
Simple hook management tool made with PHP
Stars: ✭ 60 (-35.48%)
Mutual labels:  packagist, composer
Kontent Delivery Sdk Php
Kentico Kontent Delivery SDK for PHP
Stars: ✭ 41 (-55.91%)
Mutual labels:  composer, packagist
Packagist Mirror
Creates Packagist.org mirror site.
Stars: ✭ 32 (-65.59%)
Mutual labels:  composer, packagist
client-php
Official NFe.io API Client for PHP
Stars: ✭ 36 (-61.29%)
Mutual labels:  packagist, composer
Packagist Mirror
Alibaba Cloud Packagist Mirror
Stars: ✭ 63 (-32.26%)
Mutual labels:  composer, packagist
The-PHP-Workshop
A New, Interactive Approach to Learning PHP
Stars: ✭ 30 (-67.74%)
Mutual labels:  packagist, composer
Roguesharp
A .NET Standard class library providing map generation, path-finding, and field-of-view utilities frequently used in roguelikes or 2D tile based games. Inspired by libtcod
Stars: ✭ 316 (+239.78%)
Mutual labels:  random, generator
prestashop-shop-creator
Generate random demo data to test your PrestaShop shop.
Stars: ✭ 22 (-76.34%)
Mutual labels:  generator, random
Composer Mirror
Composer 全量镜像发布于2017年3月,曾不间断运行2年多。这个开源有助于理解 Composer 镜像的工作原理
Stars: ✭ 607 (+552.69%)
Mutual labels:  composer, packagist
composer-velocita
Velocita - Composer plugin for transparent caching
Stars: ✭ 26 (-72.04%)
Mutual labels:  packagist, composer
alfred-packagist
Alfred workflow to search for PHP packages with Packagist
Stars: ✭ 21 (-77.42%)
Mutual labels:  packagist, composer
Id Card
身份证号校验及信息获取
Stars: ✭ 14 (-84.95%)
Mutual labels:  composer, packagist
Codice Fiscale
A PHP library to calculate and check the italian tax code (codice fiscale).
Stars: ✭ 57 (-38.71%)
Mutual labels:  composer, generator

Keygen

A fluent PHP random key generator.

Packagist Packagist Packagist

Keygen is a PHP package that generates random character sequences known as keys. The package ships with built-in key generators for four key types namely: numeric, alphanumeric, token and byte. Its implementation effectively combines simplicity and expressiveness.

Installation

With Composer

The Keygen package can be installed easily with [Composer] - require the gladcodes/keygen package from the command line.

$ composer require gladcodes/keygen

Alternatively, you can manually add the Keygen package to the composer.json file of your project and then run composer install from the command line as follows:

{
    "require": {
        "gladcodes/keygen": "~1.1"
    }
}
$ composer install

You can use it in your PHP code like this:

<?php

require __DIR__ . '/vendor/autoload.php';
use Keygen\Keygen;

printf("Your appID is %.0f", Keygen::numeric(12)->generate()); // Your appID is 878234290135

Usage and Documentation

Todos

  • Write tests

License

The Keygen package is covered by the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].