Skip to content

Latest commit

 

History

History
66 lines (48 loc) · 2.28 KB

README.md

File metadata and controls

66 lines (48 loc) · 2.28 KB

Tactician module for Zend Framework

Module to integrate Tactician with Zend Framework projects.

Build Status Latest Stable Version Build Status Total Downloads

Requirements

Installation

Tactician module only officially supports installation through Composer. For Composer documentation, please refer to getcomposer.org.

You can install the module from command line:

$ composer require riskio/tactician-module

Enable the module by adding TacticianModule key to your application.config.php file.

Default configuration

<?php
use League\Tactician\Handler\CommandNameExtractor\ClassNameExtractor;
use League\Tactician\Handler\Locator\InMemoryLocator;
use League\Tactician\Handler\MethodNameInflector\InvokeInflector;

return [
    'tactician' => [
        'handler' => [
            'command_name_extractor' => ClassNameExtractor::class,
            'locator' => InMemoryLocator::class,
            'method_name_inflector' => InvokeInflector::class,
        ],
        'middlewares' => [],
        'command_map' => [],
    ],
];

Testing

$ vendor/bin/phpunit

Credits

License

The MIT License (MIT). Please see License File for more information.