summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 689882ac9de99e985b056393d8252fc17f8ff94d (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":  ">=7.1"
    },
    "require-dev": {
        "mockery/mockery": "^1.3",
        "phpunit/phpunit": "^7.5.20 || ^9.3.8",
        "squizlabs/php_codesniffer": "^3.5.8"
    },
    "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"
        }
    }
}