jundelleb / php-console-helper
A simple command-line helper functions built for developers.
Installs: 27
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/jundelleb/php-console-helper
Requires
- fzaninotto/faker: ^1.5
- symfony/console: ~2.0
This package is auto-updated.
Last update: 2025-10-19 14:52:48 UTC
README
A simple command-line helper functions built for developers. This package uses the following libraries:
- fzaninotto's Faker
Getting Setup
composer global require jundelleb/php-console-helper- Make sure to place the
~/.composer/vendor/bindirectory (or the equivalent directory for your OS) in your PATH so thepchexecutable can be located by your system.
Helpers
Faker(faker)Converter(convert)
Basic Usage
-
Generate random name:
pch faker nameOutput: Isom Medhurst -
Generate a sentence with 10 words:
pch faker sentence --params=10Output: Aut qui et eum itaque voluptatibus qui rem sit blanditiis.
Please visit Faker for complete lists of available formatters.
-
Convert input string to md5:
pch convert:md5 testOutput: 098f6bcd4621d373cade4e832627b4f6 -
Convert input string to base64 encoded:
pch convert:base64 testOutput: dGVzdA== -
Decode base64 encoded string:
pch convert:base64 dGVzdA== --decodeOutput: test
Enjoy! :)