summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 49cce0918f76f10679d96f083387c60e76c3a2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
    "name":        "league/tactician",
    "description": "A small, flexible command bus. Handy for building service layers.",
    "keywords":    ["command", "command bus", "service layer"],
    "license":     "MIT",
    "authors": [
        {
            "name": "Ross Tuck",
            "homepage": "http://tactician.thephpleague.com"
        }
    ],
    "require": {
        "php":  ">=5.5"
    },
    "require-dev": {
        "mockery/mockery": "~0.9",
        "phpunit/phpunit": "^4.8.35",
        "squizlabs/php_codesniffer": "~2.3"
    },
    "autoload": {
        "psr-4": {
            "League\\Tactician\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "League\\Tactician\\Tests\\": "tests/"
        },
        "files": [
            "tests/Fixtures/Command/CommandWithoutNamespace.php"
        ]
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.0-dev"
        }
    }
}