summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: fbfa21e95e37f7b86449766e4c7b3517b8b7586a (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
{
    "name":         "phpspec/phpspec",
    "description":  "Specification-oriented BDD framework for PHP 5.3+",
    "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/"
        }
    ],

    "require": {
        "php":                      ">=5.3.3",
        "phpspec/prophecy":         "~1.4",
        "phpspec/php-diff":         "~1.0.0",
        "sebastian/exporter":       "~1.0",
        "symfony/console":          "~2.3|~3.0",
        "symfony/event-dispatcher": "~2.1|~3.0",
        "symfony/process":          "^2.6|~3.0",
        "symfony/finder":           "~2.1|~3.0",
        "symfony/yaml":             "~2.1|~3.0",
        "doctrine/instantiator":    "^1.0.1",
        "ext-tokenizer":            "*"
    },

    "require-dev": {
        "behat/behat":           "^3.0.11",
        "symfony/filesystem":    "~2.1|~3.0",
        "phpunit/phpunit":       "~4.4",
        "ciaranmcnulty/versionbasedtestskipper": "^0.2.1"
    },

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

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

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

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

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