jildertmiedema / laravel-tactician by jildertmiedema

Tactician for laravel 5+
4,821
9
1
Package Data
Maintainer Username: jildertmiedema
Maintainer Contact: git@jildertmiedema.nl (Jildert Miedema)
Package Create Date: 2015-06-17
Package Last Update: 2024-01-22
Language: PHP
License: MIT
Last Refreshed: 2024-04-17 15:14:06
Package Statistics
Total Downloads: 4,821
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 9
Total Watchers: 1
Total Forks: 5
Total Open Issues: 1

laravel-tactician

Tactician command bus for laravel 5+

Build Status Software License Packagist Version Total Downloads

Install

composer require jildertmiedema/laravel-tactician

Add JildertMiedema\LaravelTactician\TacticianServiceProvider to your app.php

Run this in the command line:

php artisan vendor:publish

Edit config/tactician.php and set your namespaces

Usage

In your controllers or console commands you can use the trait JildertMiedema\LaravelTactician\DispatchesCommands.


use YourApp\Commmands\DoSomethingCommand;
use Illuminate\Routing\Controller as BaseController;
use JildertMiedema\LaravelTactician\DispatchesCommands;

class Controller extends BaseController
{
    use DispatchesCommands;

    public function store(Request $request)
    {
        $command = new DoSomethingCommand($request->get('id'), $request->get('value'));
        $this->dispatch($command);

        return redirect('/');
    }
}

Extending

Middleware

In your own ServiceProvider:

$this->app['tactician.middleware']->prepend('your.middleware');

$this->app->bind('your.middleware', function () {
    return new MiddleWare
});

Locator

The default locator is set in the container by tactician.handler.locator, of course you can change it.

In your own ServiceProvider:

$this->bind('tactician.handler.locator', function () {
    return new YourLocator();
});