Last Updated | | Ratings | | Unique User Downloads | | Download Rankings |
2022-06-24 (1 month ago) | | Not yet rated by the users | | Total: 84 This week: 3 | | All time: 9,822 This week: 62 |
|
Description | | Author |
This package can generate shell scripts that can execute PHP code.
It provides a PHP script that you can execute from a command-line shell to generate a new PHP script file with a given name.
The generated script checks different directories to find the autoload.php script file.
Then it calls the class provided with this package to check the current CLI environment.
Developers can edit the generated script to write their script custom login code. Innovation Award
June 2022
Nominee
Vote |
PHP can help run command tools that can perform specific actions.
Many PHP developers are used to managing their projects using commands run from a command-line console shell.
This package can generate a shell script with PJP code that developers can edit to add their custom command tool logic to the hand.
This way, this package simplifies the creation of new console shell script commands written in PHP.
Manuel Lemos |
| |
|
|
Innovation award
Nominee: 12x |
|
Details
Command Line Environment for PHP
This project aims to deliver an free as in freedom, easy to use and lean as in fat free environment to create executable command line php files.
This project does not want to be competitive to a big console environment like the once mentioned below in the link section.
The versioneye status is:
The current change log can be found here.
Take a look on openhub.net.
Usage
Create Executable Command Line File
./bin/net_bazzline_create_executable_command_line_file bin/hello
Write Your Code
#open bin/hello
#replace line "$usage = basename(__FILE__) . ' [-v|--verbose]';" with the line below
$usage = basename(__FILE__) . ' <your name> [-v|--verbose]';
#replace the line "//put in your business logic" with the code below
//begin of dependencies
$arguments = $environment->getArguments();
$values = $arguments->getValues();
//end of dependencies
//begin of argument validation
$valuesNotAreValid = (count($values) == 0);
if ($valuesNotAreValid) {
throw new InvalidArgumentException(
'invalid number of arguments provided'
);
}
//end of argument validation
//begin of business logic
$name = ucfirst($values[0]);
$environment->outputIfVerbosityIsEnabled('provided values are: ' . implode(' ', $values));
$environment->output('Hello ' . $name);
//end of business logic
#execute ./bin/hello world
Example
Install
By Hand
mkdir -p vendor/net_bazzline/php_component_cli_environment
cd vendor/net_bazzline/php_component_cli_environment
git clone https://github.com/bazzline/php_component_cli_environment .
composer require net_bazzline/php_component_cli_environment:dev-master
API
API is available at bazzline.net.
Links
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.