├── .editorconfig ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml └── src ├── CharCase.php ├── Faker.php ├── Generators ├── AlphaGenerator.php ├── ArrayGenerator.php ├── IntegerGenerator.php └── StringGenerator.php ├── Random.php └── Trivia.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/CharCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/src/CharCase.php -------------------------------------------------------------------------------- /src/Faker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/src/Faker.php -------------------------------------------------------------------------------- /src/Generators/AlphaGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/src/Generators/AlphaGenerator.php -------------------------------------------------------------------------------- /src/Generators/ArrayGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/src/Generators/ArrayGenerator.php -------------------------------------------------------------------------------- /src/Generators/IntegerGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/src/Generators/IntegerGenerator.php -------------------------------------------------------------------------------- /src/Generators/StringGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/src/Generators/StringGenerator.php -------------------------------------------------------------------------------- /src/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/src/Random.php -------------------------------------------------------------------------------- /src/Trivia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/random/HEAD/src/Trivia.php --------------------------------------------------------------------------------