7918065f0991e80c3f8811047c30406d91872462
[yaffs-website] / vendor / phpspec / prophecy / composer.json
1 {
2     "name":         "phpspec/prophecy",
3     "description":  "Highly opinionated mocking framework for PHP 5.3+",
4     "keywords":     ["Mock", "Stub", "Dummy", "Double", "Fake", "Spy"],
5     "homepage":     "https://github.com/phpspec/prophecy",
6     "type":         "library",
7     "license":      "MIT",
8     "authors":      [
9         {
10             "name":      "Konstantin Kudryashov",
11             "email":     "ever.zet@gmail.com",
12             "homepage":  "http://everzet.com"
13         },
14         {
15             "name":      "Marcello Duarte",
16             "email":     "marcello.duarte@gmail.com"
17         }
18     ],
19
20     "require": {
21         "php":                               "^5.3|^7.0",
22         "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
23         "sebastian/comparator":              "^1.1|^2.0",
24         "doctrine/instantiator":             "^1.0.2",
25         "sebastian/recursion-context":       "^1.0|^2.0|^3.0"
26     },
27
28     "require-dev": {
29         "phpspec/phpspec": "^2.5|^3.2",
30         "phpunit/phpunit": "^4.8 || ^5.6.5"
31     },
32
33     "autoload": {
34         "psr-0": {
35             "Prophecy\\": "src/"
36         }
37     },
38
39     "autoload-dev": {
40         "psr-4": {
41             "Fixtures\\Prophecy\\": "fixtures"
42         }
43     },
44
45     "extra": {
46         "branch-alias": {
47             "dev-master": "1.6.x-dev"
48         }
49     }
50 }