Download the PHP package spsostrov/app-console without Composer

On this page you can find all versions of the php package spsostrov/app-console. 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 app-console

SPŠOstrov App Console

The App Console is an easy tool for multiple purposes allowing to define custom commands bound together with any composer-managed project.

Goals:

Getting started

If you want to use the app console, just use it as a dependency:

The app console will provide a command in vendor binaries, which you may call:

This binary fully supports unix-style options and is a PHP file. Therefore you may run it anywhere where a php interpreter exists. The interesting staff on the whole app console is, where and how all the commands of the console are loaded. They are in fact loaded from composer packages. The commands are loaded from these packages:

If a command of the same name is defined in multiple packages, the first found command is used. The order of the packages exactly matches the schema given above. The order of spsostrov-app-console packges is now given by the order how composer is ordering them and it is not much reliable. Maybe in a future version of the app console clean rules defining the order could be implemented. It means, that any command is first looked for in the root package, then in packages of type spsostrov-app-console and in the spsostrov/app-console last.

Commands are searched in the scripts/ subdirectory of the package unless stated otherwise. If you want to change the default search directory, you may explicitely set it up in composer.json:

If you want to create an app console command, just create an executable binary inside of the scripts/ directory. In such a case, the console will pass the arguments one to one, without any parsing. Only if --help and/or --version is passed, it is recognized inside of the app console and handled internally not passing it to the app console command.

Console will just run the command as a regular system-wide executable. Windows platform is not (yet) supported, but it definitely works well under the WSL subsystem.

The command manifest

The power of the app console comes with the fact, that you may extend the available information by provide a manifest file to each command. The manifest file has the same name as the executable, but has the extension .json. For example the manifest file for the command run has the name run.json.

The manifest file is just a json file, which may look like this:

The meaning of the configuration records:

Command argument processing

The App Console comes with an argument processing model, which may be set up very easily and is very powerful. The main idea is, that passing arguments from the app console to a command executable binary is done in these steps:

  1. The App Console parses its global options and the command name itself. According to this it decides which command should be invoked, etc. Arguments after the command name are decided and later should be passed to the executable binary.
  2. These arguments are processed using the options configuration in the manifest file (see above). The result of this processing is always a regular PHP associative array. See the package spsostrov/getopt for details.
  3. From that associative array of parsed options arguments are reconstructed back, but they may be totally rearranged in a way so it is much easier to be processed by the script.

To use the full potential of the option parsing, the command must define either the options and also the args fields in the manifest file.

When only options are defined, but args not, the only advantage of this solution would be, that app console will properly look for the automatically defined --help and --version options inside of all other options since the default value of args causes to always pass the arguments exactly as they are.

Defining args

The args field is just an array of strings containing rules what should be added in the argument list. The rules have access to the parsed options and therefore parsed options may be easily put into the final argument list.

These rules may be used:

Example

Let say we want to create a command taking any number of input files as arguments and having one output file argument defaulting to stdout.

The processing command is designed in a way that the output file is the first argument (defaulting to - if no output is specified) and all other arguments represent the input files.

We want to have the options designed in a way to be called:

To acheive this goal, you may put in the manifest file:

Events

The App Console contain a mechanism not only to invoke particular commands, but also to process events of different kinds. The idea behind events is almost identical to commands with one difference: Events are always invoked in all packages.

Any command may be processed as an event. Nothing special is required. There is only a convention:

Event command names should always start with the dot, so that they are invisible by default. If you want to invoke a command as an event, just call:

In that case the .configure command is called from inside of all packages.

Invoking command from a particular package

This will invoke the dc command from the package spsostrov/runtime.

Using a custom command invoker

It is possible to set up a special scenario when commands are not invoked directly by executing them, but they are executed using an "invoker". The invoker takes the binary to be executed and its arguments as invoker's arguments and it may do whatever it want.

An invoker is a regular command defined in this way:

Then all commands are executed using such an invoker. The purpose of using an invoker depends on the needs, but the original goal was to provide a mechanism how to automatically do some rights escallation before invoking any command.

Invoker parameters

An invoker may be also parametrized. The nubmer of parameters is fixed and prescribed in the invoker's manifest file. To define a number of invoker parameters, use this in the invoker's manifest:

The list of accepted parameters is defined as a json object where the order of the items is significant:

I.e. in this particular example the invoker's arguments will be:

Any command itself may override the invoker params using its own manifest file. For example:

Important: If some invoker params does not have a value (because default is null and command is not overriding it) then the invoker is not used and the command is invoked directly.


All versions of app-console with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
composer-plugin-api Version ^2.1
spsostrov/getopt Version ^0.3
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 spsostrov/app-console contains the following files

Loading the files please wait ....