summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: e665867feaf8a39d9ac7fef1e5b782926fca6965 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
    "name":         "phpspec/phpspec",
    "description":  "Specification-oriented BDD framework for PHP 7.1+",
    "keywords":     ["BDD", "SpecBDD", "TDD", "spec", "specification", "tests", "testing"],
    "homepage":     "http://phpspec.net/",
    "type":         "library",
    "license":      "MIT",
    "authors":      [
        {
            "name":      "Konstantin Kudryashov",
            "email":     "ever.zet@gmail.com",
            "homepage":  "http://everzet.com"
        },
        {
            "name":      "Marcello Duarte",
            "homepage":  "http://marcelloduarte.net/"
        },
        {
            "name":      "Ciaran McNulty",
            "homepage":  "https://ciaranmcnulty.com/"
        }
    ],

    "require": {
        "php":                      "^7.2, <7.5",
        "phpspec/prophecy":         "^1.9",
        "phpspec/php-diff":         "^1.0.0",
        "sebastian/exporter":       "^1.0 || ^2.0 || ^3.0",
        "symfony/console":          "^3.4 || ^4.0 || ^5.0",
        "symfony/event-dispatcher": "^3.4 || ^4.0 || ^5.0",
        "symfony/process":          "^3.4 || ^4.0 || ^5.0",
        "symfony/finder":           "^3.4 || ^4.0 || ^5.0",
        "symfony/yaml":             "^3.4 || ^4.0 || ^5.0",
        "doctrine/instantiator":    "^1.0.5",
        "ext-tokenizer":            "*"
    },

    "require-dev": {
        "behat/behat":           "^3.3",
        "symfony/filesystem":    "^3.4 || ^4.0 || ^5.0",
        "phpunit/phpunit":       "^7.0"
    },

    "suggest": {
        "phpspec/nyan-formatters": "Adds Nyan formatters"
    },

    "conflict": {
        "sebastian/comparator" : "<1.2.4"
    },

    "autoload": {
        "psr-0": {
            "PhpSpec": "src/"
        }
    },

    "autoload-dev": {
        "psr-0": {
            "spec\\PhpSpec": "."
        }
    },

    "bin": ["bin/phpspec"],

    "extra": {
        "branch-alias": {
            "dev-master": "6.1.x-dev"
        }
    }

}