jundelleb / php-console-helper
A simple command-line helper functions built for developers.
v0.0.1
2016-03-15 03:15 UTC
Requires
- fzaninotto/faker: ^1.5
- symfony/console: ~2.0
This package is auto-updated.
Last update: 2024-11-19 12:39:19 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/bin
directory (or the equivalent directory for your OS) in your PATH so thepch
executable can be located by your system.
Helpers
Faker
(faker)Converter
(convert)
Basic Usage
-
Generate random name:
pch faker name
Output: Isom Medhurst
-
Generate a sentence with 10 words:
pch faker sentence --params=10
Output: 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 test
Output: 098f6bcd4621d373cade4e832627b4f6
-
Convert input string to base64 encoded:
pch convert:base64 test
Output: dGVzdA==
-
Decode base64 encoded string:
pch convert:base64 dGVzdA== --decode
Output: test
Enjoy! :)