cellar / tactician
Tactician integration with Nette projects
Installs: 33 457
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 0
Requires
- php: ^7.1 || ^8.0
- league/tactician: ^1.0
README
Nette extension for the Tactician library https://github.com/thephpleague/tactician/
Installation
Step 1: Download Nette extension for Tactician
Open a command console, enter your project directory and execute the following command to download latest version:
$ composer require cellar/tactician
Step 2: Enable the extension
Open your application config file and add TacticianExtension:
extensions: tactician: Cellar\Tactician\DI\TacticianExtension
Step 3: Configure middlewares
tactician: commandbus: default: middleware: - @tactician.middleware.queue - @tactician.middleware.locking - @tactician.middleware.command_handler
Important: Adding your own middleware is absolutely encouraged, just be sure to always add @tactician.middleware.command_handler
as the final middleware. Otherwise, your commands won't actually be executed.
Check the Tactician docs for more info and a complete list of middleware.
Step 4: Add command handlers
services: myCommandHandler: class: My\LaunchRocketHandler tags: tactician.handler: [ command: My\LaunchRocketCommand ]