Download the PHP package zachleigh/artisanize without Composer

On this page you can find all versions of the php package zachleigh/artisanize. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package artisanize

Artisanize

Use Laravel Artisan command syntax in any Symfony Console command.

Latest Stable Version Build Status Quality Score StyleCI

Contents

Installation

Install into any new or existing project that uses Symfony Console via composer:

Then, in your command files, rather than extend Symfony's base command (Symfony\Component\Console\Command\Command), extend the Artisanize Command class (Artisanize\Command). Define signature and description properties and a handle method on the class.

Writing Commands

A command class has three components: a signature, a description, and a handle method.

signature is where you define your command's name, arguments, and options. This is discussed in detail below. description is where you can set a description message for your command to be displayed when using the console. The handle method will be called when the command is fired and is where you should write the logic for your command.

Command Signature

The command signature is written in the same way that the command will be used in the console and consists of three parts: the command name, arguments, and options. The command name must come first in the signature and can be namespaced by prefixing the command name with a namespace followed by a colon (':'):

Arguments and options are enclosed in curly braces and follow the command name. Options are prefixed by two dashes ('--').

Defining Command Arguments

A standard argument consists of the argument name wrapped in curly braces:

The argument name, arg in the example above, is used to access the argument value via the argument method.

To make an argument optional, append a question mark ('?') to the argument name:

To give the argument a default value, separate the argument name and the default value with an equals sign ('='):

If no value is provided for the argument, the default value will be used.

If the argument is in array form, append an asterisk ('*') to the argument name:

Arguments can then be passed to the command by space separating them:

This will set the value of arg to ['one', 'two', 'three'].

Argument arrays can also be set as optional:

When accessing optional argument arrays, arguments that have not been passed equal an empty array.

It is often helpful to provide a description with an argument. To do this, add a colon (':') after the argument definition and append the description:

Defining Command Options

A standard option consists of the option, prefixed by two dashes ('--'), wrapped in curly braces:

The option name, opt, is used to access the argument value via the option method. Standard options do not take values and act as true/false flags: the presence of the option when the command is called sets its value to true and if it is not present, the value is false.

To define an option with a required value, append an equals sign ('=') to the option name:

To set a default value, place it after the equals sign:

Options may also have shortcuts to make them easier to remember and use. To set a shortcut, prepend it to the command name and separate the two with a pipe ('|'):

Now, the option may be called in the standard way:

Or by using the shortcut:

Options may also be passed as arrays:

When passing options arrays, each value must be prefixed by the option name:

The value of opt will be set to ['one', 'two', 'three'].

Just like with arguments, the option description can best by appending a colon (':') and the description to the option name definiton:

Accessing Command Arguments And Options

To access arguments in the handle method, use the command class argument method. If an argument name is given, it will return the value of the argument and if nothing is passed, it will return an array of all arguments:

The option method works in the exact same way:

There are also hasArgument and hasOption methods on the command object:

Asking for Confirmation

The confirm method can be used to ask the user for simple confirmation:

Asking a Question

The ask method can be used to ask a user a question. Pass a default value as the second argument:

Asking for a Password

The user answer can be hidden by using the askPassword method:

Choosing From a List

The choose method only allows an answer from a predefined list of choices. The default value can be passed as the third argument:

Autocompletion

The anticipate method can provide the user with some auto-completion help when starting to write. The user can still provide any answer, regardless of the auto-completion hints:

Multiple Choice

When the user should be allowed to choose more than a single answer, the choice method allows them to select multiple items from a list. The third argument contains a string of comma-separated defaults:

Command Output

Every command has an output variable stored on the object that has several methods to help write output to the console.

The write method outputs plain unformatted text, writeInfo outputs green text, writeError outputs red text, and writeComment outputs yellow text:

The output variable is a simple wrapper around Symfony's output class. To access this class, use the getOutputInterface method:

Keep in mind that since the Artisanize Command class simply wraps up the Symfony console component, all Symfony command features are still available on your command objects. For more information on Symfony Commands, see the Symfony console component documentation.

Credits and Contributing

This project was extracted out of the Yarak project. Many thanks to @micheleangioni for his contributions to that codebase, many of which have made their way here.

Contributions are more than welcome. Fork, improve and make a pull request. For bugs, ideas for improvement or other, please create an issue.


All versions of artisanize with dependencies

PHP Build Version
Package Version
Requires symfony/console Version ^5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package zachleigh/artisanize contains the following files

Loading the files please wait ....