summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 4534259372e9528f8aa3b2bd4748dd83ac42f3e2 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
    "name": "mockery/mockery",
    "description": "Mockery is a simple yet flexible PHP mock object framework",
    "scripts": {
        "docs": "phpdoc -d library -t docs/api"
    },
    "keywords": [
        "bdd",
        "library",
        "mock",
        "mock objects",
        "mockery",
        "stub",
        "tdd",
        "test",
        "test double",
        "testing"
    ],
    "homepage": "https://github.com/mockery/mockery",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Pádraic Brady",
            "email": "padraic.brady@gmail.com",
            "homepage": "http://blog.astrumfutura.com"
        },
        {
            "name": "Dave Marshall",
            "email": "dave.marshall@atstsolutions.co.uk",
            "homepage": "http://davedevelopment.co.uk"
        }
    ],
    "require": {
        "php": ">=5.6.0",
        "lib-pcre": ">=7.0",
        "hamcrest/hamcrest-php": "~2.0"
    },
    "require-dev": {
        "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
    },
    "autoload": {
        "psr-0": {
            "Mockery": "library/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "test\\": "tests/"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.0.x-dev"
        }
    }
}