Download the PHP package devdot/cli without Composer
On this page you can find all versions of the php package devdot/cli. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package cli
Short Description Tools for CLI projects, on top of symfony/console.
License MIT
Informations about the package cli
devdot/cli
Tools for CLI projects, on top of symfony/console.
Features
- Intuitive application layout
- Container / Dependency Injection
- File-based command routing by default
- Building companion utility
- Fast production application
- Powerful PHP traits for command classes
Installation
Get started with a new project:
Or install the framework into an existing project like this:
Documentation
CLI Builder
Using devdot/cli-builder, cli applications can be built in minutes.
Create new commands like this:
This will create a new command class at src/Commands/Testing/Example
that is wired to testing:example
. This generated class will be fully registered in you application and it extends your projects's custom base command class:
Run vendor/bin/cli-builder list
to see an overview of available commands.
Application Layout
Take a look at devdot/cli-project to see the default application layout.
Binaries
If you want to provide your production application through your composer project package, you may call cli-builder composer:add-binary
or add it to composer.json yourself, (see more).
The provided binaries are described as follows:
Binary | cli-builder command | Description |
---|---|---|
bin/dev |
run:dev |
Execute your application in development mode. The container will be rebuild on every call, by default no caching is active. |
bin/prod |
run:prod |
Execute your application in production mode. This will assume a built container and use all available caching. |
bin/build |
run:build <version> <name> |
Build and cache the production container. This is required for autowiring to work in production. |
For more details on the build process, see Production Build.
File based routing
Command names are generated automatically based on their location in the App\\Commands
namespace. See examples for generated names:
Command | Path |
---|---|
about | src/Commands/About.php |
load-config | src/Commands/LoadConfig.php |
cache:clear | src/Commands/Cache/Clear.php |
app-config:reload-data | src/Commands/AppConfig/ReloadData.php |
routing:manager:reset | src/Commands/Routing/Manager/Reset.php |
Upon building the container.
If you want to change a commands name, you may do so like this:
If you want to use a new or changed command in the production application, make sure to run bin/build
first. The container will store command names (Command::getGeneratedName
) and cache them for production.
To increase performance, command classes will only be created when necessary (by using Symfony's ContainerCommandLoader). Therefore, __construct
and configure
are only called when the command is executed or when the commands are list
-ed.
Exceptions as Exit Codes
Exceptions may be used to find a direct exit from nested control flow. Any uncaught exception during Command::handle
will cause the process to exit with the exception's error code. The exception message will be displayed (the stack trace is only shown in development).
You may use exceptions as exit codes like this:
Kernel
The Kernel.php
file is required as it anchors the container in your namespace and allows auto-detection of commands.
The container is invoked by binaries through Kernel::run
, with the first param set to true
on development builds (which will build a fresh container on every call).
You may change the application name and version by overwriting Kernel::getName
and Kernel::getVersion
respectively. By default, the name is assumed from the directory name and the version is pulled from the latest git tag.
Services for the container may be added as class-string in the Kernel::$services
array. For more on services and providers, see Service Providers.
Customization
Follow these steps to change the default namespace or directory:
- change namespace in
composer.json
- regenerate the Kernel using
cli-builder make:kernel
- change namespace in entrypoints (files in
bin
) - dump composer autoload
Traits
There are some traits that provide common functionality to commands as you require them. Thanks to Trait Constructors, they require no setup in Command::__construct
or Command::configure
.
Trait | Description |
---|---|
Devdot\Cli\Traits\ForceTrait |
Adds--force (-f ) option to a command. Check input like this: $this->input->getOption('force') . |
Devdot\Cli\Traits\RunProcessTrait |
Add theCommand::runProcess utility. Execute on the command line or call other internal commands with a nice wrapper. Works on top of symfony/process. |
Container
All parts of a devdot/cli
application are connected through the container's dependency injection. The container registers commands and constructs commands, and autowires all services as needed.
Register a service in through the Kernel and have it automatically injected in your command:
Services are autowired to other services, so you may use dependency injection on service constructors too.
The container is build before commands are created. In production mode, the container is only loaded from cache. Therefore, unused services cause no overhead in production. See more at Production Build.
Service Providers
If you have services that require complex setup, you need to use a service provider. Create a new service provider using cli-builder make:provider YourProvider
and add it to Kernel::$providers
.
In production mode, service providers are never invoked, because the entire container is cached (see more at Production Build).
The Kernel acts as a service provider too, so you may overwrite Kernel::booting
just like in a regular service provider.
Command Trait Constructors
Traits that are used in commands may have their own constructors that are called automatically. Trait constructors can be used to setup the command:
Trait constructors can receive services through dependency injection like this:
Trait constructors are called on the commands that implement those traits. Traits may be inherited both by other traits or in the command classes.
Production Build
It is recommended to deploy the application based on the production binary. Use bin/build
to build the container that is used in production.
Some important hints:
- Command names are generated through
Command::getGeneratedName
and cached in the container. Dynamic names will not work in production. - Application name and version are cached in the container and will not behave dynamically in production.
- Unused services will be optimized out of the production container. Only accessing them without dependency injection (i.e. through
$container->get('service')
may cause them to be unavailable in production. - Service Providers are only called during the container build process. Therefore, these classes will not even be initialized in production.
By default, the cached container is stored in src/ProductionContainer.php
. The class can be changed through overwriting const Kernel::CACHED_CONTAINER_NAME
.
You may use cli-builder build:phar
to create an executable PHAR from your production application.
All versions of cli with dependencies
psr/container Version ^2.0
symfony/config Version ^7.1
symfony/console Version ^7
symfony/dependency-injection Version ^7.1
symfony/process Version ^7.1